結果

問題 No.349 干支の置き物
ユーザー kichirb3kichirb3
提出日時 2018-03-04 09:56:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 832 bytes
コンパイル時間 1,534 ms
コンパイル使用メモリ 78,652 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-20 19:50:29
合計ジャッジ時間 2,074 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 WA -
testcase_19 AC 2 ms
4,376 KB
testcase_20 WA -
testcase_21 AC 1 ms
4,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.349 干支の置き物
// https://yukicoder.me/problems/no/349
//

#include <iostream>
#include <unordered_map>
using namespace std;

string solve(unordered_map<string, int> &items, int N);


int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int N;
    cin >> N;
    unordered_map<string, int> items;
    for (auto i = 0; i < N; ++i) {
        string tmp;
        cin >> tmp;
        ++items[tmp];
    }

    string ans = solve(items, N);
    cout << ans << endl;
}


string solve(unordered_map<string, int> &items, int N) {
    if (N % 2 == 0) {
        for (auto i: items) {
            if (i.second * 2 >= N)
                return "NO";
        }
    } else {
        for (auto i: items) {
            if (i.second * 2 > N)
                return "NO";
        }
    }
    return "YES";
}
0