結果

問題 No.349 干支の置き物
ユーザー chacoder1chacoder1
提出日時 2021-04-26 22:14:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 201,364 KB
最終ジャッジ日時 2025-01-21 01:18:27
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(void) {
  int n;
  cin>>n;
  string s[n];
  map<string,int>mp;
  for(int i=0;i<n;i++){
    cin>>s[i];
    mp[s[i]]++;
  }
  int maxt=0;
  for(auto e:mp){
    maxt=max(maxt,e.second);
  }
  if((n/2)<=(n-maxt)) cout<<"YES"<<endl;
  else cout<<"NO"<<endl;
  return 0;
}
0