結果
問題 | No.2328 Build Walls |
ユーザー | shop_one |
提出日時 | 2023-05-28 14:47:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,235 bytes |
コンパイル時間 | 1,053 ms |
コンパイル使用メモリ | 113,520 KB |
実行使用メモリ | 13,440 KB |
最終ジャッジ日時 | 2024-06-08 06:12:04 |
合計ジャッジ時間 | 3,391 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 34 ms
8,576 KB |
testcase_14 | WA | - |
testcase_15 | AC | 17 ms
5,760 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 6 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 27 ms
8,064 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 51 ms
13,312 KB |
testcase_29 | WA | - |
testcase_30 | AC | 65 ms
13,312 KB |
testcase_31 | AC | 61 ms
13,312 KB |
testcase_32 | WA | - |
testcase_33 | AC | 62 ms
13,184 KB |
testcase_34 | AC | 64 ms
13,312 KB |
testcase_35 | AC | 70 ms
13,312 KB |
testcase_36 | WA | - |
ソースコード
// I SELL YOU...! #include<iostream> #include<vector> #include<algorithm> #include<functional> #include<queue> #include<chrono> #include<iomanip> #include<map> #include<set> using namespace std; using ll = long long; using P = pair<ll,ll>; using TP = tuple<ll,ll,ll>; void init_io(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(18); } const ll INF = 1e9; signed main(){ init_io(); ll h,w; cin >> h >> w; vector<vector<ll>> a(h, vector<ll>(w, -1)); vector<vector<ll>> dp(h, vector<ll>(w, INF)); for(int i=1;i<h-1;i++){ for(int j=0;j<w;j++) { cin >> a[i][j]; if (j==0 && a[i][j] != -1) dp[i][j] = a[i][j]; } } for (int j=1;j<w;j++) { for (int i=1;i<h-1;i++) { if (a[i][j] == -1) continue; dp[i][j] = a[i][j] + min(dp[i-1][j-1], min(dp[i][j-1], dp[i+1][j-1])); } for (int i=2;i<h-1;i++) { if (a[i][j] == -1) continue; dp[i][j] = min(dp[i][j], dp[i-1][j] + a[i][j]); } for (int i=h-3;i>0;i--) { if (a[i][j] == -1) continue; dp[i][j] = min(dp[i][j], dp[i+1][j] + a[i][j]); } } ll ans = INF; for (int i=0;i<h;i++) { ans = min(ans, dp[i][w-1]); } if (ans == INF) ans = -1; cout << ans << endl; }