結果
問題 | No.416 旅行会社 |
ユーザー | hedwig100 |
提出日時 | 2020-08-17 14:01:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 304 ms / 4,000 ms |
コード長 | 2,130 bytes |
コンパイル時間 | 1,814 ms |
コンパイル使用メモリ | 179,092 KB |
実行使用メモリ | 23,616 KB |
最終ジャッジ日時 | 2024-05-08 15:56:52 |
合計ジャッジ時間 | 5,796 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
16,384 KB |
testcase_01 | AC | 4 ms
6,400 KB |
testcase_02 | AC | 4 ms
6,528 KB |
testcase_03 | AC | 4 ms
6,400 KB |
testcase_04 | AC | 4 ms
6,400 KB |
testcase_05 | AC | 4 ms
6,400 KB |
testcase_06 | AC | 4 ms
6,400 KB |
testcase_07 | AC | 5 ms
6,400 KB |
testcase_08 | AC | 6 ms
6,656 KB |
testcase_09 | AC | 14 ms
7,424 KB |
testcase_10 | AC | 110 ms
16,256 KB |
testcase_11 | AC | 109 ms
16,964 KB |
testcase_12 | AC | 119 ms
16,840 KB |
testcase_13 | AC | 92 ms
16,832 KB |
testcase_14 | AC | 304 ms
23,168 KB |
testcase_15 | AC | 304 ms
23,616 KB |
testcase_16 | AC | 298 ms
23,604 KB |
testcase_17 | AC | 289 ms
23,388 KB |
testcase_18 | AC | 282 ms
23,296 KB |
testcase_19 | AC | 165 ms
17,024 KB |
testcase_20 | AC | 162 ms
16,640 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for (int i = 0; i < (int)(n); i ++) #define irep(i,n) for (int i = (int)(n) - 1;i >= 0;--i) using namespace std; using ll = long long; using PL = pair<ll,ll>; using P = pair<int,int>; constexpr int INF = 1000000000; constexpr long long HINF = 1000000000000000; constexpr long long MOD = 1000000007;// = 998244353; constexpr double EPS = 1e-4; constexpr double PI = 3.14159265358979; vector<int> parents(100010,-1); vector<vector<int>> child(100010); vector<int> when(100010,-1); int t = -1; int find(int i) { if (parents[i] < 0) return i; return parents[i] = find(parents[i]); } void unite(int x,int y) { x = find(x); y = find(y); if (x == y) return; if (x == 0) { for (int c:child[y]) { when[c] = t; child[0].push_back(c); } parents[x] += parents[y]; parents[y] = x; } else if (y == 0) { for (int c:child[x]) { when[c] = t; child[0].push_back(c); } parents[y] += parents[x]; parents[x] = y; } else { if (parents[x] > parents[y]) swap(x,y); for (int c:child[y]) { child[x].push_back(c); } parents[x] += parents[y]; parents[y] = x; } } bool same(int i,int j) {return find(i) == find(j);} int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int N,M,Q; cin >> N >> M >> Q; rep(i,N) child[i].push_back(i); vector<P> bridge(M),broken(Q); set<P> st; rep(i,M) { cin >> bridge[i].first >> bridge[i].second; bridge[i].first--; bridge[i].second--; } rep(i,Q) { cin >> broken[i].first >> broken[i].second; broken[i].first--; broken[i].second--; st.insert(broken[i]); } rep(i,M) { if (!st.count(bridge[i])) unite(bridge[i].first,bridge[i].second); } t = Q; for (;t >= 1;--t) { unite(broken[t - 1].first,broken[t - 1].second); } for (int i = 1;i < N;++i) { if (same(i,0)) cout << when[i] << '\n'; else cout << 0 << '\n'; } return 0; }