結果

問題 No.2095 High Rise
ユーザー tnakao0123tnakao0123
提出日時 2022-10-08 01:10:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 873 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 42,668 KB
実行使用メモリ 14,996 KB
最終ジャッジ日時 2024-06-12 23:34:50
合計ジャッジ時間 2,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 19 ms
9,932 KB
testcase_18 AC 13 ms
9,908 KB
testcase_19 AC 6 ms
7,872 KB
testcase_20 AC 20 ms
6,940 KB
testcase_21 AC 34 ms
8,104 KB
testcase_22 AC 141 ms
14,860 KB
testcase_23 AC 140 ms
14,996 KB
testcase_24 AC 137 ms
14,864 KB
testcase_25 AC 137 ms
14,992 KB
testcase_26 AC 139 ms
14,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2095.cc:  No.2095 High Rise - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 1000;
const int MAX_M = 1000;

/* typedef */

typedef long long ll;

/* global variables */

int as[MAX_N][MAX_M];
ll dp[MAX_N + 1][MAX_N];

/* subroutines */

inline void setmin(ll &a, ll b) { if (a > b) a = b; }

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);
  if (n == 1) { puts("0"); return 0; }

  for (int i = 0; i < n; i++)
    for (int j = 0; j < m; j++) scanf("%d", as[i] + j);

  ll mind = 0;
  for (int i = 0; i < n; i++) {
    for (int j = 0; j < m; j++) {
      dp[i + 1][j] = dp[i][j] + as[i][j];
      if (i > 0)
	setmin(dp[i + 1][j], mind + as[i - 1][j] + as[i][j]);
    }
    mind = *min_element(dp[i + 1], dp[i + 1] + m);
  }

  printf("%lld\n", mind);

  return 0;
}
0