結果

問題 No.2064 Smallest Sequence on Grid
ユーザー atjh16atjh16
提出日時 2022-09-20 11:36:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,159 ms / 3,000 ms
コード長 768 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 208,328 KB
実行使用メモリ 436,992 KB
最終ジャッジ日時 2024-06-01 16:55:24
合計ジャッジ時間 19,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 185 ms
15,360 KB
testcase_18 AC 185 ms
15,360 KB
testcase_19 AC 185 ms
15,488 KB
testcase_20 AC 1,554 ms
320,128 KB
testcase_21 AC 1,670 ms
346,624 KB
testcase_22 AC 1,148 ms
237,696 KB
testcase_23 AC 1,129 ms
226,304 KB
testcase_24 AC 1,119 ms
226,304 KB
testcase_25 AC 1,127 ms
226,304 KB
testcase_26 AC 2,132 ms
436,992 KB
testcase_27 AC 2,159 ms
436,992 KB
testcase_28 AC 184 ms
15,616 KB
testcase_29 AC 1,781 ms
369,920 KB
testcase_30 AC 170 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int h, w;
string s[3000];
string t;
set<int> u[6000];

int main() {
	cin >> h >> w;

	for (int i = 0; i < h; i++)
		cin >> s[i];

	t = s[0].substr(0, 1);
	u[0].insert(0);

	for (int k = 0; k < h + w - 2; k++) {
		char c = '{';

		for (int i : u[k]) {
			if (i < h - 1) {
				if (s[i + 1][k - i] < c) {
					c = s[i + 1][k - i];
					u[k + 1].clear();
					u[k + 1].insert(i + 1);
				}
				else if (s[i + 1][k - i] == c) {
					u[k + 1].insert(i + 1);
				}
			}

			if (k - i < w - 1) {
				if (s[i][k - i + 1] < c) {
					c = s[i][k - i + 1];
					u[k + 1].clear();
					u[k + 1].insert(i);
				}
				else if (s[i][k - i + 1] == c) {
					u[k + 1].insert(i);
				}
			}
		}

		t.push_back(c);
	}

	cout << t << endl;
}
0