結果
問題 | No.938 賢人を探せ |
ユーザー | takumi152 |
提出日時 | 2019-12-01 06:54:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 1,010 bytes |
コンパイル時間 | 1,403 ms |
コンパイル使用メモリ | 96,544 KB |
実行使用メモリ | 9,860 KB |
最終ジャッジ日時 | 2024-05-08 08:56:28 |
合計ジャッジ時間 | 2,624 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 71 ms
9,860 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 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 | 3 ms
5,376 KB |
testcase_08 | AC | 19 ms
5,760 KB |
testcase_09 | AC | 21 ms
5,888 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 28 ms
6,016 KB |
testcase_12 | AC | 32 ms
5,888 KB |
testcase_13 | AC | 32 ms
5,888 KB |
testcase_14 | AC | 35 ms
5,888 KB |
testcase_15 | AC | 33 ms
5,888 KB |
testcase_16 | AC | 34 ms
5,888 KB |
testcase_17 | AC | 33 ms
5,888 KB |
testcase_18 | AC | 32 ms
5,888 KB |
testcase_19 | AC | 33 ms
5,888 KB |
testcase_20 | AC | 32 ms
5,760 KB |
testcase_21 | AC | 32 ms
6,016 KB |
testcase_22 | AC | 72 ms
9,856 KB |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <utility> #include <string> #include <cstdlib> #include <queue> #include <set> using namespace std; typedef long long int ll; typedef pair<int, int> Pii; const ll mod = 1000000007; int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector<string> a(n), b(n); for (int i = 0; i < n; i++) cin >> a[i] >> b[i]; set<string> cheater, clean; for (int i = 0; i < n; i++) { cheater.insert(a[i]); auto it1 = clean.find(a[i]); if (it1 != clean.end()) clean.erase(it1); auto it2 = cheater.find(b[i]); if (it2 == cheater.end()) clean.insert(b[i]); } vector<string> ans; set<string> checked; for (int i = 0; i < n; i++) { auto it1 = clean.find(b[i]); auto it2 = checked.find(b[i]); if (it1 != clean.end() && it2 == checked.end()) { ans.push_back(b[i]); checked.insert(b[i]); } } for (auto &x: ans) cout << x << endl; return 0; }