-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcatfeed.cpp
54 lines (45 loc) · 1.06 KB
/
catfeed.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <iostream>
using namespace std;
int main() {
int t;
cin >> t;
while(t--){
int n,m;
cin >> n>>m;
int arr[m],fr[n],c = 0 ;
for(int i= 0;i<n;i++)
fr[i] = 0;
for(int i=0;i<m;i++){
cin>>arr[i];
}
for(int i=0;i<m/n;i++){
for(int j = 0;j<n;j++){
fr[arr[ (n*i)+j ] -1]++;
if(fr[arr[ (n*i)+j ] - 1 ] != 1){
c = 1;
break;
}
}
for(int i= 0;i<n;i++)
fr[i] = 0;
}
for(int i= 0;i<n;i++)
fr[i] = 0;
if(c == 1){
cout << "NO" << std::endl;
}
else
for(int i = 0;i<m%n;i++){
fr[arr[i + (m/n)*n]]++;
if(fr[arr[i+(m/n)]-1]>1){
cout << "NO" << std::endl;
c = 1;
break;
}
}
if(c == 0){
cout << "YES" << std::endl;
}
}
return 0;
}