Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
72247 | 廖宸睿 | 19老李吃水果 | C++ | Accepted | 1 MS | 312 KB | 754 | 2024-05-04 15:00:34 |
#include <iostream> #include <cstdio> using namespace std; int main() { int n,k,x,max=0,a[10001]; cin>>k; for (int i=1;i<=k;i++){ cin>>n; max=0; for (int j=1;j<=10000;j++) a[j]=0; for (int j=1;j<=n;j++){ cin>>x; a[x]++; } for (int j=1;j<=n;j++){ if (a[j]>max&&a[j]>0) max=a[j]; } if (n%2==0){ if (max<=n/2) cout<<"Y"<<endl; else cout<<"N"<<endl; } else{ if (max<=n/2+1) cout<<"Y"<<endl; else cout<<"N"<<endl; } } return 0; }