結果

問題 No.2095 High Rise
ユーザー kabipoyokabipoyo
提出日時 2022-10-07 21:46:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,315 ms / 2,000 ms
コード長 1,935 bytes
コンパイル時間 4,708 ms
コンパイル使用メモリ 276,252 KB
実行使用メモリ 230,544 KB
最終ジャッジ日時 2024-06-12 06:51:34
合計ジャッジ時間 12,853 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 131 ms
28,968 KB
testcase_18 AC 82 ms
20,096 KB
testcase_19 AC 19 ms
7,168 KB
testcase_20 AC 142 ms
31,112 KB
testcase_21 AC 288 ms
56,852 KB
testcase_22 AC 1,302 ms
230,540 KB
testcase_23 AC 1,289 ms
230,400 KB
testcase_24 AC 1,303 ms
230,464 KB
testcase_25 AC 1,308 ms
230,496 KB
testcase_26 AC 1,315 ms
230,544 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