結果
問題 | No.763 Noelちゃんと木遊び |
ユーザー | ninja-kid |
提出日時 | 2023-02-10 13:04:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 79 ms / 2,000 ms |
コード長 | 1,397 bytes |
コンパイル時間 | 3,816 ms |
コンパイル使用メモリ | 266,792 KB |
実行使用メモリ | 18,132 KB |
最終ジャッジ日時 | 2024-07-07 09:17:05 |
合計ジャッジ時間 | 6,501 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 71 ms
18,132 KB |
testcase_01 | AC | 27 ms
7,040 KB |
testcase_02 | AC | 62 ms
11,776 KB |
testcase_03 | AC | 40 ms
9,216 KB |
testcase_04 | AC | 31 ms
7,424 KB |
testcase_05 | AC | 41 ms
8,960 KB |
testcase_06 | AC | 79 ms
13,568 KB |
testcase_07 | AC | 73 ms
13,312 KB |
testcase_08 | AC | 43 ms
9,344 KB |
testcase_09 | AC | 30 ms
7,424 KB |
testcase_10 | AC | 12 ms
6,940 KB |
testcase_11 | AC | 73 ms
13,932 KB |
testcase_12 | AC | 68 ms
12,672 KB |
testcase_13 | AC | 68 ms
12,544 KB |
testcase_14 | AC | 59 ms
11,520 KB |
testcase_15 | AC | 40 ms
9,088 KB |
testcase_16 | AC | 8 ms
6,940 KB |
testcase_17 | AC | 42 ms
9,088 KB |
testcase_18 | AC | 74 ms
13,768 KB |
testcase_19 | AC | 68 ms
12,800 KB |
testcase_20 | AC | 70 ms
12,672 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #define rep(i, n) for (int i = 0; i < (int)(n); i++) using namespace atcoder; using ll = long long; const ll MOD1 = 1000000007LL; const ll MOD2 = 998244353LL; using namespace std; const vector<pair<int, int>> dpos4 = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}}; // const vector<pair<int, int>> dpos8 = {{-1, -1}, {-1, 0}, {-1, 1}, {0, -1}, {0, 1}, {1, -1}, {1, 0}, {1, 1}}; template <typename T> bool chmax(T &a, const T &b) { if (a < b) { a = b; // aをbで更新 return true; } return false; } template <typename T> bool chmin(T &a, const T &b) { if (a > b) { a = b; // aをbで更新 return true; } return false; } int main() { int N; cin >> N; vector<vector<int>> edges(N); rep(i, N - 1){ int u, v; cin >> u >> v; u--, v--; edges[u].push_back(v); edges[v].push_back(u); } vector<vector<ll>> dp(N, vector<ll>(2, 0)); auto dfs = [&](auto self, int fr, int prev = -1) -> void { dp[fr][0] = 0; dp[fr][1] = 1; for(auto to: edges[fr]){ if(to == prev) continue; self(self, to, fr); dp[fr][0] += max(dp[to][0], dp[to][1]); dp[fr][1] += max(dp[to][0], dp[to][1] - 1); } }; dfs(dfs, 0); cout << max(dp[0][0], dp[0][1]) << endl; return 0; }