結果

問題 No.938 賢人を探せ
ユーザー erbowlerbowl
提出日時 2019-12-15 20:20:32
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 1,918 ms
コンパイル使用メモリ 178,916 KB
実行使用メモリ 8,528 KB
最終ジャッジ日時 2024-12-14 11:52:48
合計ジャッジ時間 3,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ll n;
    std::cin >> n;
    
    std::map<string, bool> ok;
    std::map<string, bool> out;
    
    vector<string> ab;
    
    for (int i = 0; i < n; i++) {
        string t1,t2;
        std::cin >> t1>>t2;
        ab.push_back(t2);
        ok[t2] = true;
        out[t1] = true;
    }
    
    for (int i = 0; i < n; i++) {
        if(ok[ab[i]] && !out[ab[i]]){
            std::cout << ab[i] << std::endl;
            ok[ab[i]] = false;
        }
    }
    
}
0