結果
問題 | No.2677 Minmax Independent Set |
ユーザー | NokonoKotlin |
提出日時 | 2024-03-13 21:02:43 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 909 bytes |
コンパイル時間 | 3,204 ms |
コンパイル使用メモリ | 257,728 KB |
実行使用メモリ | 68,852 KB |
最終ジャッジ日時 | 2024-09-30 00:15:08 |
合計ジャッジ時間 | 10,094 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
21,276 KB |
testcase_01 | AC | 4 ms
14,524 KB |
testcase_02 | AC | 4 ms
14,460 KB |
testcase_03 | AC | 6 ms
14,432 KB |
testcase_04 | AC | 6 ms
14,360 KB |
testcase_05 | AC | 592 ms
67,376 KB |
testcase_06 | AC | 621 ms
67,480 KB |
testcase_07 | AC | 656 ms
67,724 KB |
testcase_08 | AC | 593 ms
68,132 KB |
testcase_09 | AC | 593 ms
68,852 KB |
testcase_10 | TLE | - |
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 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
ソースコード
// メモ化再帰 #include <bits/stdc++.h> using namespace std; vector<vector<int>> adj; unordered_map<int, pair<int, int>> memo[200100]; // 木DPを行う pair<int, int> rec(int r, int par = -1) { if (memo[r][par] != pair<int, int>{0, 0}) return memo[r][par]; int ret0 = 0; int ret1 = 1; for (auto &&c : adj[r]) { if (c == par) continue; auto [dp0, dp1] = rec(c, r); ret0 += max(dp0, dp1); ret1 += dp0; } return memo[r][par] = {ret0, ret1}; } int main() { int N; cin >> N; adj.resize(N); for (int i = 0; i < N - 1; i++) { int u, v; cin >> u >> v; u--; v--; adj[u].push_back(v); adj[v].push_back(u); } int ans = numeric_limits<int>::max(); for (int r = 0; r < N; r++) { auto [dp0, dp1] = rec(r); ans = min(ans, dp1); } cout << ans << endl; }