結果
問題 | No.349 干支の置き物 |
ユーザー | kyabaria |
提出日時 | 2018-09-12 16:36:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 549 bytes |
コンパイル時間 | 2,187 ms |
コンパイル使用メモリ | 186,868 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 03:37:03 |
合計ジャッジ時間 | 2,938 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
#include <bits/stdc++.h> typedef long long ll; #define INF 1000000000 #define MOD 1000000007 using namespace std; int main(void){ int n; cin>>n; map<string,int>mp; for(int i=0;i<n;i++){ string s; cin>>s; mp[s]++; } vector<pair<int,string>>v; for(auto it= mp.begin(); it != mp.end(); ++it) { v.push_back({it->second,it->first}); } sort(v.begin(),v.end()); int num=v[v.size()-1].first; if(num<=(n+1)/2){ cout<<"YES"<<endl; }else{ cout<<"NO"<<endl; } }