結果
問題 |
No.349 干支の置き物
|
ユーザー |
![]() |
提出日時 | 2018-09-12 16:34:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 548 bytes |
コンパイル時間 | 2,197 ms |
コンパイル使用メモリ | 187,704 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-27 03:33:51 |
合計ジャッジ時間 | 3,161 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 WA * 7 |
ソースコード
#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; } }