結果

問題 No.2095 High Rise
ユーザー baLoon8128baLoon8128
提出日時 2022-10-07 21:52:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 4,013 ms
コンパイル使用メモリ 233,684 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-06-12 07:05:25
合計ジャッジ時間 7,899 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 48 ms
6,940 KB
testcase_18 AC 33 ms
6,944 KB
testcase_19 AC 9 ms
6,940 KB
testcase_20 AC 52 ms
6,944 KB
testcase_21 AC 97 ms
6,940 KB
testcase_22 AC 414 ms
14,976 KB
testcase_23 AC 411 ms
15,104 KB
testcase_24 AC 410 ms
14,976 KB
testcase_25 AC 412 ms
14,976 KB
testcase_26 AC 409 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using pii = pair<int, int>;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define repr(i, n) for (int i = (int)(n - 1); i >= 0; --i)

int main() {
    int n, m;
    cin >> n >> m;
    vvi a(n, vi(m));
    rep(i, n) rep(j, m) cin >> a[i][j];
    if (n == 1) {
        cout << 0 << endl;
    } else {
        vector<vector<ll>> dp(n + 1, vector<ll>(m));
        rep(i, n) {
            rep(j, m) dp[i + 1][j] = dp[i][j] + a[i][j];
            ll mi = *min_element(dp[i + 1].begin(), dp[i + 1].end());
            rep(j, m) dp[i + 1][j] = min(dp[i + 1][j], mi + a[i][j]);
        }
        ll ret = *min_element(dp[n].begin(), dp[n].end());
        cout << ret << endl;
    }
    return 0;
}
0