fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13. Scanner sc = new Scanner(System.in);
  14. int t = sc.nextInt();
  15. while(t-- >0){
  16. int n = sc.nextInt();
  17. int arr[] = new int[n], freq[] = new int[1002];
  18. for(int i=0;i<n;i++){
  19. arr[i] = sc.nextInt();
  20. freq[arr[i]-1]++;
  21. }
  22. boolean ans = true;
  23. for(int i=0;i<1000;i++){
  24. if(freq[i]==0)continue;
  25. if(freq[i]>=2){
  26. freq[i+1]+=(freq[i]-2);
  27. }
  28. else {ans = false;
  29. break;
  30. }
  31.  
  32. }
  33. System.out.println((ans)?"Yes":"No");
  34. }
  35. sc.close();
  36. }
  37. }
Success #stdin #stdout 0.13s 54436KB
stdin
9
2
1 1
2
2 1
4
1 1 4 4
4
3 4 3 3
4
2 3 4 4
6
3 3 4 5 3 3
6
2 2 2 4 4 4
8
1 1 1 1 1 1 1 4
10
9 9 9 10 10 10 10 10 10 10
stdout
Yes
No
Yes
Yes
No
Yes
No
Yes
Yes