結果
問題 | No.561 東京と京都 |
ユーザー | Bucchiman |
提出日時 | 2020-04-04 11:12:16 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 826 bytes |
コンパイル時間 | 664 ms |
コンパイル使用メモリ | 28,928 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-03 07:05:47 |
合計ジャッジ時間 | 4,147 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 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 | -- | - |
ソースコード
/* * FileName: no_561_tokyo_kyoto * CreatedDate: 2020-04-04 10:48:11 +0900 * LastModified: 2020-04-04 11:10:50 +0900 */ #include <stdio.h> int max(int s, int t){ if(s>t){ return s; } else{ return t; } } int dp( int i, int N, int D, int T[], int K[], int bi){ if(i==N){ return 0; } else if( bi==0 ){ int box_0 = dp(i+1,N,D,T,K,0)+T[i]; int box_1 = dp(i+1,N,D,T,K,1)+K[i]-D; return max(box_0,box_1); } else{ int box_0 = dp(i+1,N,D,T,K,0)+T[i]-D; int box_1 = dp(i+1,N,D,T,K,1)+K[i]; return max(box_0,box_1); } } int main(void){ int N, D; scanf("%d %d",&N,&D); int T[N],K[N]; for(int i=0;i<N;i++){ scanf("%d %d",&T[i], &K[i]); } int tmp_0 = dp(0,N,D,T,K,0); printf("%d\n",tmp_0); return 0; }