結果

問題 No.938 賢人を探せ
ユーザー ninoinui
提出日時 2020-07-19 20:15:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 3,074 ms
コンパイル使用メモリ 204,460 KB
最終ジャッジ日時 2025-01-12 00:57:15
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int N;
  cin >> N;
  vector<pair<string, string>> V(N);
  set<string> SE;
  for (int i = 0; i < N; i++) {
    string A, B;
    cin >> A >> B;
    SE.insert(A);
    SE.insert(B);
    V.at(i) = {A, B};
  }
  for (auto [a, b] : V) SE.erase(a);
  set<string> NG;
  for (auto [a, b] : V) {
    if (SE.count(b) && !NG.count(b)) {
      cout << b << "\n";
      NG.insert(b);
    }
  }
}
0