結果

問題 No.2064 Smallest Sequence on Grid
ユーザー square1001square1001
提出日時 2022-09-02 21:26:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 529 ms / 3,000 ms
コード長 936 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-11-16 02:15:49
合計ジャッジ時間 8,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,824 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 3 ms
6,824 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 357 ms
50,304 KB
testcase_18 AC 353 ms
50,176 KB
testcase_19 AC 349 ms
50,048 KB
testcase_20 AC 481 ms
50,176 KB
testcase_21 AC 491 ms
50,176 KB
testcase_22 AC 453 ms
50,176 KB
testcase_23 AC 472 ms
50,176 KB
testcase_24 AC 451 ms
50,176 KB
testcase_25 AC 447 ms
50,176 KB
testcase_26 AC 529 ms
50,176 KB
testcase_27 AC 528 ms
50,176 KB
testcase_28 AC 365 ms
50,176 KB
testcase_29 AC 438 ms
44,288 KB
testcase_30 AC 322 ms
46,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string>
#include <vector>
#include <iostream>
using namespace std;

int main() {
	int H, W;
	cin >> H >> W;
	vector<string> S(H);
	for (int i = 0; i < H; i++) {
		cin >> S[i];
	}
	vector<vector<int> > f(H, vector<int>(W, 0));
	f[0][0] = 1;
	string answer(1, S[0][0]);
	for (int i = 0; i < H + W - 2; i++) {
		char minch = '~';
		for (int x = 0; x < H; x++) {
			int y = i - x;
			if (!(0 <= y && y < W)) {
				continue;
			}
			if (f[x][y] == 1) {
				if (x != H - 1) {
					minch = min(minch, S[x + 1][y]);
				}
				if (y != W - 1) {
					minch = min(minch, S[x][y + 1]);
				}
			}
		}
		for (int x = 0; x < H; x++) {
			int y = i - x;
			if (!(0 <= y && y < W)) {
				continue;
			}
			if (f[x][y] == 1) {
				if (x != H - 1 && S[x + 1][y] == minch) {
					f[x + 1][y] = 1;
				}
				if (y != W - 1 && S[x][y + 1] == minch) {
					f[x][y + 1] = 1;
				}
			}
		}
		answer += minch;
	}
	cout << answer << endl;
	return 0;
}
0