結果
問題 | No.561 東京と京都 |
ユーザー | mkan |
提出日時 | 2018-05-08 23:53:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,332 bytes |
コンパイル時間 | 845 ms |
コンパイル使用メモリ | 93,692 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 02:34:50 |
合計ジャッジ時間 | 1,499 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <stack> #include <queue> #include <set> #include <bitset> #include <map> #include <unordered_map> #include <list> #include <numeric> #include <utility> #include <iterator> #include <cstdio> #include <cmath> #include <cstdlib> #include <cstring> #include <climits> #include <ctime> #include <cassert> #define INF 1000000000 #define LINF 9000000000000000000 #define mod 1000000007 #define rep(i,n) for(int i=0;i<int(n);i++) #define rrep(i,n) for(int i=n-1;i>=0;i--) #define REP(i,a,b) for(int i=(a);i<int(b);i++) #define all(x) (x).begin(),x.end() #define pb push_back #define mp make_pair using namespace std; /* cin.tie(0); ios::sync_with_stdio(false); */ typedef long long ll; typedef unsigned long long ull; typedef vector<int> vi; typedef pair<int,int> pi; int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; int ddx[8]={-1,-1,0,1,1,1,0,-1}; int ddy[8]={0,1,1,1,0,-1,-1,-1}; bool debug=false; /*---------------------------------------------------*/ ll dp[105][2]; int main(){ int n,d; int t[105],k[105]; cin>>n>>d; rep(i,n)cin>>t[i]>>k[i]; rep(i,n){ rep(j,2){ dp[i+1][0]=max(dp[i][0]+t[i],dp[i][1]+k[i]-d); dp[i+1][1]=max(dp[i][1]+k[i],dp[i][0]+t[i]-d); } } cout<<max(dp[n][0],dp[n][1])<<endl; return 0; }