結果

問題 No.1676 Coin Trade (Single)
ユーザー monnumonnu
提出日時 2021-09-16 21:14:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 1,609 ms
コンパイル使用メモリ 172,876 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-06-29 17:13:42
合計ジャッジ時間 3,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 70 ms
7,424 KB
testcase_04 AC 64 ms
6,944 KB
testcase_05 AC 57 ms
6,528 KB
testcase_06 AC 61 ms
6,528 KB
testcase_07 AC 52 ms
5,888 KB
testcase_08 AC 31 ms
5,376 KB
testcase_09 AC 49 ms
5,632 KB
testcase_10 AC 53 ms
6,016 KB
testcase_11 AC 72 ms
7,680 KB
testcase_12 AC 41 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 93 ms
9,344 KB
testcase_34 AC 90 ms
9,472 KB
testcase_35 AC 93 ms
9,344 KB
testcase_36 AC 94 ms
9,344 KB
testcase_37 AC 94 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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]+1]+A[i]-A[B[i][j]]);
    }
  }
  cout<<dp[N]<<'\n';
}
0