結果
問題 | No.417 チューリップバブル |
ユーザー | keita1_atcoder |
提出日時 | 2022-05-26 21:08:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,025 bytes |
コンパイル時間 | 1,892 ms |
コンパイル使用メモリ | 185,756 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-20 15:06:37 |
合計ジャッジ時間 | 8,961 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 457 ms
5,376 KB |
testcase_09 | AC | 1,361 ms
5,376 KB |
testcase_10 | AC | 1,445 ms
5,376 KB |
testcase_11 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; vector<long long> U; struct Edge{ int to,w; Edge(int a,int b){ to = a; w = b; } Edge(){} }; vector<vector<Edge>> G; map<tuple<int,int,int>,long long> memo; long long DFS(int v,int a,int t,int p = -1){ if(G[v][a].to==p) return DFS(v,a-1,t,p); if(memo.count(make_tuple(v,a,t))) return memo[make_tuple(v,a,t)]; if(a==-1) return 0; long long res = DFS(v,a-1,t,p); for(int j = 0;j <= (t-2*G[v][a].w);j++){ res = max(res,DFS(v,a-1,t-2*G[v][a].w-j,p)+DFS(G[v][a].to,(int)G[G[v][a].to].size()-1,j,v)+U[G[v][a].to]); } memo[make_tuple(v,a,t)] = res; return res; } int main(){ int N,M; cin >> N >> M; U.assign(N,0); for(int i = 0;i < N;i++) cin >> U[i]; G.assign(N,vector<Edge>(0)); for(int i = 0;i < N-1;i++){ int A,B,C; cin >> A >> B >> C; G[A].push_back(Edge(B,C)); G[B].push_back(Edge(A,C)); } cout << DFS(0,(int)G[0].size()-1,M)+U[0] << endl; }