結果
問題 | No.1194 Replace |
ユーザー | uzzy |
提出日時 | 2020-08-22 17:49:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,638 bytes |
コンパイル時間 | 2,637 ms |
コンパイル使用メモリ | 203,052 KB |
実行使用メモリ | 110,876 KB |
最終ジャッジ日時 | 2024-10-15 11:40:07 |
合計ジャッジ時間 | 21,974 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | TLE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | RE | - |
ソースコード
#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 const int NV = 400001; map<int, vector<int>> E, E2; vector<int> ba, E3[NV]; set<int> vis; map<int, int> S; int kazu[NV], memo[NV]; int NS; void dfs1(int A) { if (vis.find(A) == vis.end()) { vis.insert(A); for (int i : E[A]) dfs1(i); ba.pb(A); } } void dfs2(int A) { if (!S[A]) { S[A] = NS; chmax(kazu[NS], A); for (int i : E2[A]) dfs2(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); int N, M; cin >> N >> M; set<int> list; rep(i, M) { int u, v; cin >> u >> v; E[u].pb(v); E2[v].pb(u); list.insert(u); list.insert(v); } for (auto p : E) { dfs1(p.first); } for (int i = N - 1; i >= 0; i--) if (S[ba[i]] == 0) { NS++; dfs2(ba[i]); } //for (auto p : E) { // for (int j : p.second) { // if (S[p.first] != S[j]) E3[S[p.first]].pb(S[j]); // } //} //ll kotae = 0; //for (auto i : list) { // kotae -= i; // int j = S[i]; // kotae += dfs3(j); //} //kotae += ll(N) * (N + 1) / 2; //co(kotae); Would you please return 0; }