結果
問題 | No.561 東京と京都 |
ユーザー | myanta |
提出日時 | 2017-08-25 22:48:16 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 627 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 40,192 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 16:32:52 |
合計ジャッジ時間 | 1,011 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 17 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:26:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | scanf("%d%d", &t[i], &k[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<vector> using namespace std; using vi=vector<int>; using vvi=vector<vi>; void max_u(int&m, int v) { if(m<v) m=v; } int main(void) { int n, d; while(scanf("%d%d", &n, &d)==2) { vi t(n), k(n); for(int i=0;i<n;i++) { scanf("%d%d", &t[i], &k[i]); } vvi dp(n); for(auto&dpe:dp) dpe.assign(2, 0); dp[0][0]=t[0]; dp[0][1]=k[0]-d; for(int i=1;i<n;i++) { max_u(dp[i][0], dp[i-1][0]+t[i]); max_u(dp[i][0], dp[i-1][1]+t[i]-d); max_u(dp[i][1], dp[i-1][0]+k[i]-d); max_u(dp[i][1], dp[i-1][1]+k[i]); } printf("%d\n", max(dp[n-1][0], dp[n-1][1])); } return 0; }