結果
問題 | No.1375 Divide and Update |
ユーザー | outline |
提出日時 | 2021-02-05 22:27:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 1,895 bytes |
コンパイル時間 | 1,589 ms |
コンパイル使用メモリ | 141,152 KB |
実行使用メモリ | 25,928 KB |
最終ジャッジ日時 | 2024-07-02 13:01:36 |
合計ジャッジ時間 | 3,910 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 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 | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 59 ms
23,040 KB |
testcase_11 | AC | 54 ms
21,376 KB |
testcase_12 | AC | 33 ms
13,184 KB |
testcase_13 | AC | 27 ms
11,520 KB |
testcase_14 | AC | 68 ms
25,912 KB |
testcase_15 | AC | 66 ms
25,928 KB |
testcase_16 | AC | 68 ms
25,728 KB |
testcase_17 | AC | 67 ms
25,820 KB |
testcase_18 | AC | 67 ms
25,728 KB |
testcase_19 | AC | 72 ms
25,756 KB |
testcase_20 | AC | 56 ms
25,856 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> #include <unordered_set> using namespace std; using ll = long long; constexpr int INF = 1001001001; // constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, X, Y; cin >> N >> X >> Y; vector<int> a(N); for(int i = 0; i < N; ++i) cin >> a[i]; constexpr ll inf = 1e+17; vector<vector<ll>> prefix(N + 1, vector<ll>(3, -inf)); auto suffix = prefix; prefix[0][0] = 0; for(int i = 0; i < N; ++i){ chmax(prefix[i + 1][0], prefix[i][0] + a[i]); chmax(prefix[i + 1][1], max(prefix[i][0], prefix[i][1]) + X); chmax(prefix[i + 1][2], max(max(prefix[i][0], prefix[i][1]) + X, prefix[i][2] + a[i])); } suffix[N][0] = 0; for(int i = N - 1; i >= 0; --i){ chmax(suffix[i][0], suffix[i + 1][0] + a[i]); chmax(suffix[i][1], max(suffix[i + 1][0], suffix[i + 1][1]) + Y); chmax(suffix[i][2], max(max(suffix[i + 1][0], suffix[i + 1][1]) + Y, suffix[i + 1][2] + a[i])); } for(int i = 1; i < N - 1; ++i){ cout << prefix[i][2] + a[i] + suffix[i + 1][2] << '\n'; } return 0; }