結果
問題 | No.2677 Minmax Independent Set |
ユーザー | nu50218 |
提出日時 | 2024-02-13 21:08:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,230 bytes |
コンパイル時間 | 2,719 ms |
コンパイル使用メモリ | 213,504 KB |
実行使用メモリ | 23,660 KB |
最終ジャッジ日時 | 2024-09-30 00:06:19 |
合計ジャッジ時間 | 6,390 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
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 | -- | - |
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; // 木DPを行う pair<int, int> rec(int r, int par = -1) { 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 {ret0, ret1}; } int main() { auto start = chrono::system_clock::now(); 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); } vector<pair<int, int>> order; for (int i = 0; i < N; i++) { order.push_back({adj[i].size(), i}); } sort(order.begin(), order.end(), greater<pair<int, int>>()); int ans = numeric_limits<int>::max(); for (auto &&[_, r] : order) { auto now = chrono::system_clock::now(); auto ms = chrono::duration_cast<std::chrono::milliseconds>(now - start).count(); if (ms > 3500) break; auto [dp0, dp1] = rec(r); ans = min(ans, dp1); } cout << ans << endl; }