結果

問題 No.938 賢人を探せ
ユーザー xardasxardas
提出日時 2019-12-21 13:20:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 91,428 KB
実行使用メモリ 8,528 KB
最終ジャッジ日時 2024-05-08 09:09:02
合計ジャッジ時間 2,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
8,528 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 21 ms
6,868 KB
testcase_09 AC 21 ms
6,356 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 29 ms
6,996 KB
testcase_12 AC 26 ms
5,832 KB
testcase_13 AC 27 ms
5,836 KB
testcase_14 AC 27 ms
5,844 KB
testcase_15 AC 26 ms
5,972 KB
testcase_16 AC 26 ms
5,828 KB
testcase_17 AC 26 ms
5,832 KB
testcase_18 AC 27 ms
5,832 KB
testcase_19 AC 27 ms
5,964 KB
testcase_20 AC 25 ms
5,828 KB
testcase_21 AC 26 ms
5,828 KB
testcase_22 AC 60 ms
8,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// Example program
#include <iostream>
#include <string>
#include <set>
#include <algorithm>
#include <vector>

int main()
{
    int n;
    std::cin >> n;
    std::set<std::string> all, cheaters, non_cheaters;
    std::vector<std::string> order;
    for (int i=0;i<n;++i) {
        std::string a,b;
        std::cin >> a >> b;
        all.insert(b);
        cheaters.insert(a);
        order.push_back(b);
    }
    std::set_difference(all.begin(), all.end(), cheaters.begin(), cheaters.end(), std::inserter(non_cheaters, non_cheaters.end()));
    for (const auto& s : order)
    {
        if (non_cheaters.count(s))
            std::cout << s << std::endl;
        non_cheaters.erase(s);
    }
    return 0;
}
0