結果

問題 No.938 賢人を探せ
ユーザー yoshnaryyoshnary
提出日時 2019-12-01 01:33:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 1,206 ms
コンパイル使用メモリ 115,292 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-12-14 11:42:02
合計ジャッジ時間 2,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <cmath>
#include <queue>
#include <map>
#include <unordered_map>
#include <set>
#include <functional>
#include <bitset>
#include <cassert>
#include <random>
#include <iterator>
using namespace std;
using ll = long long;


int main() {
	int n; cin >> n;
	vector<string> v(n);
	set<string> s, t;
	for (int i = 0; i < n; i++) {
		string a; cin >> a >> v[i];
		s.insert(v[i]);
		t.insert(a);
	}
	set<string> diff;
	set_difference(
		s.begin(), s.end(),
		t.begin(), t.end(),
		inserter(diff, diff.begin()));
	for (const auto& a : v) {
		if (diff.count(a)) {
			cout << a << endl;
			diff.erase(a);
		}
	}
	return 0;
}
0