結果
問題 | No.1375 Divide and Update |
ユーザー | 沙耶花 |
提出日時 | 2021-02-05 21:50:06 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 473 ms / 2,000 ms |
コード長 | 925 bytes |
コンパイル時間 | 2,602 ms |
コンパイル使用メモリ | 197,740 KB |
最終ジャッジ日時 | 2025-01-18 12:14:30 |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 398 ms
25,216 KB |
testcase_11 | AC | 353 ms
23,144 KB |
testcase_12 | AC | 188 ms
14,116 KB |
testcase_13 | AC | 161 ms
12,180 KB |
testcase_14 | AC | 473 ms
28,192 KB |
testcase_15 | AC | 451 ms
28,192 KB |
testcase_16 | AC | 448 ms
28,064 KB |
testcase_17 | AC | 440 ms
28,320 KB |
testcase_18 | AC | 466 ms
28,068 KB |
testcase_19 | AC | 451 ms
28,064 KB |
testcase_20 | AC | 398 ms
28,068 KB |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 10000000000000001 vector<vector<long long>> get(vector<long long> a,long long X){ vector dp(a.size()+1,vector<long long>(3,-Inf)); dp[0][0] = 0LL; rep(i,a.size()){ rep(j,3){ long long cost = a[i]; if(j==1)cost = X; dp[i+1][j] = max(dp[i+1][j],dp[i][j] + cost); if(j==0)cost = X; else cost = a[i]; if(j!=2){ dp[i+1][j+1] = max(dp[i+1][j+1],dp[i][j] + cost); } } } return dp; } int main(){ int N; long long X,Y; cin>>N>>X>>Y; vector<long long> a(N); rep(i,N){ cin>>a[i]; } auto r0 = get(a,X); reverse(a.begin(),a.end()); auto r1 = get(a,Y); reverse(a.begin(),a.end()); for(int i=1;i<N-1;i++){ long long ans = a[i]; ans += max(r0[i][1],r0[i][2]); ans += max(r1[N-1-i][1],r1[N-1-i][2]); cout<<ans<<endl; } return 0; }