結果
問題 | No.561 東京と京都 |
ユーザー | MitI_7 |
提出日時 | 2018-02-15 15:13:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,763 bytes |
コンパイル時間 | 1,747 ms |
コンパイル使用メモリ | 173,892 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 17:15:05 |
合計ジャッジ時間 | 2,539 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 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 |
ソースコード
#include <bits/stdc++.h> #define LL long long #define VI vector<int> #define VVI vector<vector<int>> #define VVVI vector<vector<vector<int>>> #define VB vector<bool> #define VL vector<long long> #define FOR(i,a,b) for(int i= (a); i<((int)b); ++i) #define RFOR(i,a) for(int i=(a); i >= 0; --i) #define FOE(i,a) for(auto i : a) #define ALL(c) (c).begin(), (c).end() #define RALL(c) (c).rbegin(), (c).rend() #define DUMP(x) cerr << #x << " = " << (x) << endl; #define SUM(x) std::accumulate(ALL(x), 0LL) #define MIN(v) *std::min_element(v.begin(), v.end()) #define MAX(v) *std::max_element(v.begin(), v.end()) #define EXIST(v,x) (std::find(v.begin(), v.end(), x) != v.end()) #define BIT(n) (1LL<<(n)) #define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end()); #define EPS 1e-14 const std::string YES = "YES"; const std::string Yes = "Yes"; const std::string NO = "NO"; const std::string No = "No"; bool inside(int y, int x, int H, int W) { return 0 <= y && y < H && 0 <= x && x < W; } // 4近傍(右, 下, 左, 上) const std::vector<int> dy = { 0, -1, 0, 1 }; const std::vector<int> dx = { 1, 0, -1, 0 }; using namespace std; int main() { int N, D; cin >> N >> D; vector<int> T(N), K(N); FOR(i, 0, N) { cin >> T[i] >> K[i]; } vector<vector<LL>> dp(N + 1, vector<LL>(2, -1)); dp[0][0] = 0; dp[0][1] = -D; FOR(i, 0, N) { int t = T[i]; int k = K[i]; // tokyo dp[i + 1][0] = max(dp[i + 1][0], dp[i][0] + t); dp[i + 1][0] = max(dp[i + 1][0], dp[i][1] + t - D); // kyoto dp[i + 1][1] = max(dp[i + 1][1], dp[i][1] + k); dp[i + 1][1] = max(dp[i + 1][1], dp[i][0] + k - D); } cout << max(dp[N][0], dp[N][1]) << endl; return 0; }