結果
問題 | No.1676 Coin Trade (Single) |
ユーザー | monnu |
提出日時 | 2021-09-16 21:02:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 560 bytes |
コンパイル時間 | 1,603 ms |
コンパイル使用メモリ | 174,748 KB |
実行使用メモリ | 9,472 KB |
最終ジャッジ日時 | 2024-06-29 17:12:55 |
合計ジャッジ時間 | 4,580 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 51 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 1 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 91 ms
9,344 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using Graph=vector<vector<int>>; #define INF 1000000000 int main(){ int N,K; cin>>N>>K; vector<ll> A(N); vector<int> M(N); vector<vector<int>> B(N); for(int i=0;i<N;i++){ cin>>A[i]>>M[i]; B[i].resize(M[i]); for(int j=0;j<M[i];j++){ cin>>B[i][j]; B[i][j]--; } } vector<ll> dp(N+1,0); for(int i=0;i<N;i++){ dp[i+1]=dp[i]; for(int j=0;j<M[i];j++){ dp[i+1]=max<ll>(dp[i+1],dp[B[i][j]]+A[i]-A[B[i][j]]); } } cout<<dp[N]<<'\n'; }