結果
問題 | No.1194 Replace |
ユーザー | uzzy |
提出日時 | 2020-08-22 18:24:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,115 bytes |
コンパイル時間 | 2,975 ms |
コンパイル使用メモリ | 204,572 KB |
実行使用メモリ | 114,308 KB |
最終ジャッジ日時 | 2024-11-14 23:35:07 |
合計ジャッジ時間 | 35,313 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,293 ms
84,404 KB |
testcase_01 | AC | 1,449 ms
87,792 KB |
testcase_02 | AC | 1,093 ms
77,260 KB |
testcase_03 | AC | 872 ms
71,172 KB |
testcase_04 | AC | 1,478 ms
87,868 KB |
testcase_05 | AC | 1,289 ms
83,884 KB |
testcase_06 | AC | 1,478 ms
80,840 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 1,123 ms
62,752 KB |
testcase_14 | AC | 967 ms
57,644 KB |
testcase_15 | AC | 814 ms
60,608 KB |
testcase_16 | AC | 1,149 ms
63,172 KB |
testcase_17 | AC | 735 ms
56,660 KB |
testcase_18 | AC | 748 ms
54,960 KB |
testcase_19 | AC | 1,113 ms
64,844 KB |
testcase_20 | AC | 16 ms
34,244 KB |
testcase_21 | AC | 16 ms
34,120 KB |
testcase_22 | AC | 16 ms
32,244 KB |
testcase_23 | AC | 305 ms
44,548 KB |
testcase_24 | AC | 100 ms
37,696 KB |
testcase_25 | AC | 38 ms
33,740 KB |
testcase_26 | AC | 328 ms
42,688 KB |
testcase_27 | AC | 51 ms
33,348 KB |
testcase_28 | AC | 137 ms
38,980 KB |
testcase_29 | AC | 26 ms
33,536 KB |
ソースコード
#pragma GCC optimize ("O2") #pragma GCC target ("avx2") #include<bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i, n) for(int i = 0; i < (n); i++) #define rep1(i, n) for(int i = 1; i <= (n); i++) #define co(x) cout << (x) << "\n" #define cosp(x) cout << (x) << " " #define ce(x) cerr << (x) << "\n" #define cesp(x) cerr << (x) << " " #define pb push_back #define mp make_pair #define chmin(x, y) x = min(x, y) #define chmax(x, y) x = max(x, y) #define Would #define you #define please int N, M; const int NV = 400001; int KL[400001]; vector<int> E[NV], E2[NV]; vector<int> ba, E3[NV]; set<int> vis; map<int, int> S; int kazu[NV], memo[NV]; int NS; int zaatu(int A) { return lower_bound(KL, KL + M + M, A) - KL; } void dfs1(int a) { int A = zaatu(a); if (vis.find(A) == vis.end()) { vis.insert(A); for (int i : E[A]) dfs1(KL[i]); ba.pb(a); } } void dfs2(int a) { int A = zaatu(a); if (!S[A]) { S[A] = NS; chmax(kazu[NS], a); for (int i : E2[A]) dfs2(KL[i]); } } int dfs3(int A) { if (memo[A]) return memo[A]; int ret = kazu[A]; for (int i : E3[A]) chmax(ret, dfs3(i)); return memo[A] = ret; } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> N >> M; set<int> list; int kl = 0; int U[200000], V[200000]; rep(i, M) { int u, v; cin >> u >> v; U[i] = u; V[i] = v; KL[kl++] = u; KL[kl++] = v; list.insert(u); list.insert(v); } sort(KL, KL + M + M); rep(i, M) { int u = zaatu(U[i]); int v = zaatu(V[i]); E[u].pb(v); E2[v].pb(u); } for(auto i : list) { dfs1(i); } int m = ba.size(); for (int i = m - 1; i >= 0; i--) if (S[zaatu(ba[i])] == 0) { NS++; dfs2(ba[i]); } for (auto P : list) { int p = zaatu(P); for (int j : E[p]) { if (S[p] != S[j]) E3[S[p]].pb(S[j]); } } //rep1(i, N) { // cesp(i); // int j = zaatu(i); // cesp(j); // ce(S[j]); // for (auto k : E3[S[j]]) { // cesp(k); // }ce(""); //} ll kotae = 0; for (auto i : list) { kotae -= i; int tmp = zaatu(i); int j = S[tmp]; kotae += dfs3(j); } kotae += ll(N) * (N + 1) / 2; co(kotae); Would you please return 0; }