結果
問題 | No.2328 Build Walls |
ユーザー | FplusFplusF |
提出日時 | 2023-05-28 15:45:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,373 bytes |
コンパイル時間 | 2,175 ms |
コンパイル使用メモリ | 205,960 KB |
実行使用メモリ | 13,696 KB |
最終ジャッジ日時 | 2024-06-08 08:25:47 |
合計ジャッジ時間 | 9,235 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 31 ms
8,576 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 5 ms
5,376 KB |
testcase_20 | RE | - |
testcase_21 | AC | 25 ms
8,064 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 51 ms
13,312 KB |
testcase_29 | RE | - |
testcase_30 | AC | 65 ms
13,312 KB |
testcase_31 | AC | 62 ms
13,184 KB |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | AC | 61 ms
13,312 KB |
testcase_35 | RE | - |
testcase_36 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; const ll INF=(1ll<<60); #define rep(i,n) for (ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll h,w; cin >> h >> w; h-=2; vector<vector<ll>> a(h,vector<ll>(w)); rep(i,h){ rep(j,w){ cin >> a[i][j]; } } vector<vector<ll>> dp(h,vector<ll>(w+1,INF)); rep(i,h) dp[i][0]=0; rep(j,w){ rep(i,h){ if(a[i][j]==-1) continue; ll now=a[i][j]; for(ll k=i-2;0<=k;k--){ if(a[k+1][j]==-1) break; now+=a[k+1][j]; chmin(dp[k][j+1],dp[i][j]+now); } for(ll k=max(0ll,i-1);k<=min(h-1,i+1);k++){ chmin(dp[k][j+1],dp[i][j]+a[i][j]); } now=a[i][j]; for(ll k=i+2;k<h;k++){ if(a[k-1][j]==-1) break; now+=a[k-1][j]; chmin(dp[k][j+1],dp[i][j]+now); } } } ll ans=INF; rep(i,h) chmin(ans,dp[i][w]); if(ans==INF) cout << "-1\n"; else assert(0); }