結果

問題 No.918 LISGRID
ユーザー QCFiumQCFium
提出日時 2019-11-01 16:45:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 2,353 ms
コンパイル使用メモリ 173,880 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-09-14 22:46:00
合計ジャッジ時間 4,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,296 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 13 ms
8,832 KB
testcase_03 AC 16 ms
9,216 KB
testcase_04 AC 14 ms
8,576 KB
testcase_05 AC 39 ms
11,648 KB
testcase_06 AC 33 ms
11,392 KB
testcase_07 AC 49 ms
12,928 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 39 ms
11,776 KB
testcase_10 AC 39 ms
11,776 KB
testcase_11 AC 38 ms
11,648 KB
testcase_12 AC 42 ms
12,032 KB
testcase_13 AC 38 ms
11,264 KB
testcase_14 AC 45 ms
12,416 KB
testcase_15 AC 54 ms
13,184 KB
testcase_16 AC 21 ms
9,600 KB
testcase_17 AC 23 ms
9,856 KB
testcase_18 AC 22 ms
9,728 KB
testcase_19 AC 9 ms
8,192 KB
testcase_20 AC 29 ms
10,368 KB
testcase_21 AC 11 ms
8,192 KB
testcase_22 AC 9 ms
7,936 KB
testcase_23 AC 18 ms
9,344 KB
testcase_24 AC 6 ms
7,424 KB
testcase_25 AC 5 ms
7,424 KB
testcase_26 AC 5 ms
7,168 KB
testcase_27 AC 5 ms
7,168 KB
testcase_28 AC 5 ms
7,296 KB
testcase_29 AC 5 ms
7,296 KB
testcase_30 AC 5 ms
7,296 KB
testcase_31 AC 5 ms
7,296 KB
testcase_32 AC 5 ms
7,424 KB
testcase_33 AC 5 ms
7,296 KB
testcase_34 AC 6 ms
7,424 KB
testcase_35 AC 7 ms
7,808 KB
testcase_36 AC 5 ms
7,424 KB
testcase_37 AC 27 ms
10,368 KB
testcase_38 AC 18 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}
std::vector<std::pair<int, int> > hen[400][400];
int ord[400][400];
bool used[400][400];
int head = 0;
void dfs(int x, int y) {
	for (auto &j : hen[x][y]) {
		if (used[j.first][j.second]) continue;
		used[j.first][j.second] = true;
		dfs(j.first, j.second);
	}
	ord[x][y] = head++;
}

int main() {
	int h = ri(), w = ri();
	int a[h], b[w];
	for (int i = 0; i < h; i++) a[i] = ri() - 1;
	for (int i = 0; i < w; i++) b[i] = ri() - 1;
	std::sort(a, a + h, std::greater<>());
	std::sort(b, b + w, std::greater<>());
	for (int i = 0; i < h; i++) {
		for (int j = 0; j < a[i]; j++) hen[i][j].push_back({i, j + 1});
		for (int j = a[i]; j + 1 < w; j++) hen[i][j + 1].push_back({i, j});
	}
	for (int i = 0; i < w; i++) {
		for (int j = 0; j < b[i]; j++) hen[j][i].push_back({j + 1, i});
		for (int j = b[i]; j + 1 < h; j++) hen[j + 1][i].push_back({j, i});
	}
	for (int i = 0; i < h; i++) {
		for (int j = 0; j < w; j++) {
			if (!used[i][j]) {
				used[i][j] = true;
				dfs(i, j);
			}
			std::cout << h * w - ord[i][j] << " ";
		}
		std::cout << std::endl;
	}
	
	return 0;
}
0