結果
問題 | No.1194 Replace |
ユーザー | square1001 |
提出日時 | 2020-08-22 13:47:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 772 bytes |
コンパイル時間 | 872 ms |
コンパイル使用メモリ | 82,900 KB |
実行使用メモリ | 814,732 KB |
最終ジャッジ日時 | 2024-10-15 08:02:02 |
合計ジャッジ時間 | 6,971 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | MLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
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 | -- | - |
ソースコード
#include <vector> #include <iostream> #include <algorithm> #include <functional> using namespace std; int main() { int N, M; cin >> N >> M; vector<int> B(M), C(M); for (int i = 0; i < M; ++i) { cin >> B[i] >> C[i]; --B[i], --C[i]; } vector<vector<int> > G(N); for (int i = 0; i < M; ++i) { G[B[i]].push_back(C[i]); } vector<bool> vis(N, false); vector<int> dp(N); function<int(int)> dfs = [&](int pos) { vis[pos] = true; int res = pos; for (int i : G[pos]) { if (vis[i]) { res = max(res, dp[i]); } else { res = max(res, dfs(i)); } } dp[pos] = res; return res; }; for (int i = 0; i < N; ++i) { if (!vis[i]) dfs(i); } long long ans = N; for (int i = 0; i < N; ++i) { ans += dp[i]; } cout << ans << endl; return 0; }