結果
問題 | No.484 収穫 |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2017-02-13 13:15:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,024 bytes |
コンパイル時間 | 1,428 ms |
コンパイル使用メモリ | 159,928 KB |
実行使用メモリ | 42,496 KB |
最終ジャッジ日時 | 2024-06-09 10:44:40 |
合計ジャッジ時間 | 3,445 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
6,816 KB |
testcase_01 | AC | 6 ms
6,944 KB |
testcase_02 | AC | 6 ms
6,948 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 6 ms
6,944 KB |
testcase_05 | AC | 6 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:33:55: warning: iteration 2 invokes undefined behavior [-Waggressive-loop-optimizations] 33 | rep(i, 2)rep(j, 2010)rep(k, 2010) dp[i][j][k] = INF; | ~~~~~~~~~~~~^~~~~ main.cpp:7:31: note: within this loop 7 | #define rep(i,n) for(int i=0;i<(n);i++) | ^ main.cpp:33:30: note: in expansion of macro ‘rep’ 33 | rep(i, 2)rep(j, 2010)rep(k, 2010) dp[i][j][k] = INF; | ^~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vint; typedef pair<int,int> pint; typedef vector<pint> vpint; #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) #define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++) #define all(v) (v).begin(),(v).end() #define pb push_back #define mp make_pair #define fi first #define se second #define chmax(a, b) a = (((a)<(b)) ? (b) : (a)) #define chmin(a, b) a = (((a)>(b)) ? (b) : (a)) const int MOD = 1e9 + 7; const int INF = 1e9; const ll INFF = 1e18; //dp[l][r][isright] := //isright = 0のとき [l+1, r]が未収穫で、lにいるとき //isright = 1のとき [l, r-1]が未収穫で、rにいるとき ll dp[2010][2010][2]; int n; ll a[2010]; int main(void){ cin >> n; rep(i, n) cin >> a[i]; if(n == 1){ printf("%lld\n", a[0]); return 0; } rep(i, 2)rep(j, 2010)rep(k, 2010) dp[i][j][k] = INF; dp[0][n - 1][0] = a[0]; dp[0][n - 1][1] = a[n - 1]; for (int len = n - 1; len > 0; --len){ for (int i = 0; i + len < n; ++i){ rep(k, 2){ //左端が l , 右端が r int l = i, r = i + len; if(dp[l][r][k] == INF || l >= r) continue; ll time = dp[l][r][k]; if(k == 0){//現在のセルが l の時 [l + 1, r]が未収穫 //l->l+1 if(time + 1 >= a[l + 1]) chmin(dp[l + 1][r][0], time + 1); else chmin(dp[l + 1][r][0], a[l + 1]); //l->r if(time + len >= a[r]) chmin(dp[l + 1][r][1], time + r - l); else chmin(dp[l + 1][r][1], a[r]); }else{//現在のセルが r の時 [l, r - 1]が未収穫 //r->r-1 if(time + 1 >= a[r - 1]) chmin(dp[l][r - 1][1], time + 1); else chmin(dp[l][r - 1][1], a[r - 1]); //r->l if(time + 1 >= a[l]) chmin(dp[l][r + 1][0], time + r - l); else chmin(dp[l][r + 1][0], a[l]); } } } } ll ans = INF; rep(i, n)rep(j, 2){ // printf("dp[%d][%d][%d] = %d\n", i, i, j, dp[i][i][j]); chmin(ans, dp[i][i][j]); } printf("%lld\n", ans); return 0; }