結果

問題 No.2731 Two Colors
ユーザー otamay6otamay6
提出日時 2024-04-20 18:37:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 646 ms / 3,000 ms
コード長 1,724 bytes
コンパイル時間 974 ms
コンパイル使用メモリ 86,296 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-10-12 15:11:00
合計ジャッジ時間 10,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 637 ms
11,520 KB
testcase_01 AC 646 ms
11,520 KB
testcase_02 AC 632 ms
11,520 KB
testcase_03 AC 5 ms
6,816 KB
testcase_04 AC 24 ms
6,820 KB
testcase_05 AC 17 ms
6,820 KB
testcase_06 AC 63 ms
6,820 KB
testcase_07 AC 75 ms
6,816 KB
testcase_08 AC 11 ms
6,816 KB
testcase_09 AC 277 ms
10,512 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 272 ms
11,852 KB
testcase_12 AC 272 ms
10,408 KB
testcase_13 AC 229 ms
9,504 KB
testcase_14 AC 121 ms
6,912 KB
testcase_15 AC 11 ms
6,816 KB
testcase_16 AC 110 ms
6,820 KB
testcase_17 AC 157 ms
7,800 KB
testcase_18 AC 29 ms
6,820 KB
testcase_19 AC 112 ms
6,820 KB
testcase_20 AC 190 ms
8,528 KB
testcase_21 AC 31 ms
6,816 KB
testcase_22 AC 294 ms
10,768 KB
testcase_23 AC 69 ms
6,820 KB
testcase_24 AC 35 ms
6,816 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 233 ms
9,032 KB
testcase_27 AC 285 ms
11,904 KB
testcase_28 AC 181 ms
8,988 KB
testcase_29 AC 56 ms
6,824 KB
testcase_30 AC 103 ms
6,820 KB
testcase_31 AC 65 ms
6,820 KB
testcase_32 AC 347 ms
11,748 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 1 ms
6,816 KB
testcase_35 AC 2 ms
6,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>

using color_t = int;
constexpr int NONE = 2;

struct pos_t {
	int r;
	int c;
	int value;
	friend bool operator<(pos_t l, pos_t r){
		return l.value < r.value;
	}
	friend bool operator>(pos_t l, pos_t r){
		return l.value > r.value;
	}
};


int main(){
	int h, w;
	std::cin>>h>>w;
	std::vector<std::vector<int>> a(h);
	for(int i = 0; i < h; i++){
		for(int j = 0; j < w; j++){
			int x;std::cin>>x;
			a[i].push_back(x);
		}
	}
	std::vector<std::vector<color_t>> colors(h, std::vector<color_t>(w, NONE));
	colors[0][0] = 1;
	colors[h-1][w-1] = 0;
	std::priority_queue<pos_t, std::vector<pos_t>, std::greater<pos_t>> que[2];
	auto valid = [&](int r, int c){
		return 0 <=r && r < h && 0 <= c && c < w;
	};
	auto neighbors = [&](int r, int c){
		pos_t direction[4] = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}};
		std::vector<pos_t> res;
		for(auto d: direction){
			d.r += r;
			d.c += c;
			if(valid(d.r, d.c)){
				d.value = a[d.r][d.c];
				res.push_back(d);
			}
		}
		return res;
	};
	for(auto pos: neighbors(0,0)){
		que[1].push(pos);
	}
	for(auto pos: neighbors(h-1, w-1)){
		que[0].push(pos);
	}
	
	int ans = 0;
	while(true){
		int color = ++ans % 2;
		bool clear = false;
		while(que[color].size()){
			pos_t pos = que[color].top(); que[color].pop();
			if(colors[pos.r][pos.c] != NONE){
				continue;
			}
			// std::cerr << pos.r << " " << pos.c << std::endl;
			colors[pos.r][pos.c] = color;
			for(auto pos:neighbors(pos.r, pos.c)){
				if(colors[pos.r][pos.c] == (color ^ 1)){
					// std::cerr << colors[pos.r][pos.c] << std::endl;
					clear = true;
				}
				que[color].push(pos);
			}
			break;
		}
		if(clear){
			break;
		}
	}
	
	std::cout << ans << std::endl;
}
0