結果

問題 No.2095 High Rise
ユーザー kabipoyokabipoyo
提出日時 2022-10-07 21:46:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,367 ms / 2,000 ms
コード長 1,935 bytes
コンパイル時間 4,560 ms
コンパイル使用メモリ 274,956 KB
実行使用メモリ 230,424 KB
最終ジャッジ日時 2023-09-03 01:17:09
合計ジャッジ時間 13,835 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 4 ms
4,376 KB
testcase_13 AC 3 ms
4,380 KB
testcase_14 AC 7 ms
4,628 KB
testcase_15 AC 4 ms
4,380 KB
testcase_16 AC 4 ms
4,380 KB
testcase_17 AC 139 ms
28,804 KB
testcase_18 AC 90 ms
19,908 KB
testcase_19 AC 21 ms
7,020 KB
testcase_20 AC 157 ms
30,968 KB
testcase_21 AC 308 ms
56,604 KB
testcase_22 AC 1,352 ms
230,256 KB
testcase_23 AC 1,367 ms
230,420 KB
testcase_24 AC 1,367 ms
230,220 KB
testcase_25 AC 1,357 ms
230,424 KB
testcase_26 AC 1,351 ms
230,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef int64_t lint;
#define rep(i, n) for(int i=0; i<n; i++)
#define repx(i, l, n) for(int i=l; i<n; i++)
#define all(v) v.begin(), v.end()
#define show(x) cout << #x << ": " << x << endl;
#define list(x) cout << #x << ": " << x << "  ";
#define pb push_back
using vi = vector<lint>;
using vvi = vector<vector<lint>>;
template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<class T> inline void drop(T x) { cout << x << endl; exit(0); }
template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; }
constexpr lint LINF = LLONG_MAX/2;
#define mp make_pair
using pint = pair<lint, lint>;

vector<vector<pair<lint, lint>>> G;

void dijkstra(lint start, vector<lint> &dist) {
	lint a=0, b=0, x, y, N = G.size();
	dist.resize(N, LINF); dist[start] = 0;
	priority_queue<pint, vector<pint>, greater<pint>> PQ;
	PQ.push(make_pair(0, start));
	while (!PQ.empty()) {
		tie(x, a) = PQ.top(); PQ.pop();
		if (dist[a] < x) continue;
		for (auto p : G[a]) {
			tie(y, b) = p;
			if (chmin(dist[b], x+y)) PQ.push(make_pair(x+y, b));
		}
	}
}

int main() {
	lint N, M;
	cin >> N >> M;
	vvi v(N, vi(M));
	rep(i, N) vin(v[i]);

	lint a=0, b=0, c=0, x, y, z;
	G.resize(N*M*2+2);
	rep(i, M) {
		G[0].pb({0, i+1});
		G[N*M-i].pb({0, N*M*2+1});
	}
	rep(j, M) {
		rep(i, N) {
			G[i*M+j+1].pb({v[i][j], N*M+i*M+j+1});
			G[N*M+i*M+j+1].pb({0, i*M+j+1});
			if (i != N-1) G[N*M+i*M+j+1].pb({v[i+1][j], N*M+(i+1)*M+j+1});
		}
	}
	rep(i, N) {
		rep(j, M-1) {
			G[i*M+j+1].pb({0, i*M+j+2});
			G[i*M+j+2].pb({0, i*M+j+1});
		}
	}
	vi dist;
	dijkstra(0, dist);
	std::cout << dist[N*M*2+1] << '\n';
}
0