結果
問題 | No.1194 Replace |
ユーザー | uzzy |
提出日時 | 2020-08-22 18:19:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,095 bytes |
コンパイル時間 | 3,048 ms |
コンパイル使用メモリ | 203,792 KB |
実行使用メモリ | 86,024 KB |
最終ジャッジ日時 | 2024-10-15 12:02:31 |
合計ジャッジ時間 | 10,884 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | TLE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | TLE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#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); } for (int i = N - 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; }