結果

問題 No.2731 Two Colors
ユーザー 沙耶花沙耶花
提出日時 2024-04-19 21:42:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,188 ms / 3,000 ms
コード長 1,231 bytes
コンパイル時間 4,799 ms
コンパイル使用メモリ 272,292 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-10-11 14:32:17
合計ジャッジ時間 24,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,188 ms
73,728 KB
testcase_01 AC 2,153 ms
73,728 KB
testcase_02 AC 2,156 ms
73,856 KB
testcase_03 AC 7 ms
5,248 KB
testcase_04 AC 47 ms
6,656 KB
testcase_05 AC 30 ms
5,248 KB
testcase_06 AC 149 ms
12,032 KB
testcase_07 AC 173 ms
14,848 KB
testcase_08 AC 20 ms
5,248 KB
testcase_09 AC 668 ms
47,360 KB
testcase_10 AC 9 ms
5,248 KB
testcase_11 AC 654 ms
36,804 KB
testcase_12 AC 690 ms
47,104 KB
testcase_13 AC 537 ms
31,372 KB
testcase_14 AC 287 ms
21,760 KB
testcase_15 AC 19 ms
5,248 KB
testcase_16 AC 253 ms
16,896 KB
testcase_17 AC 384 ms
25,344 KB
testcase_18 AC 57 ms
6,656 KB
testcase_19 AC 262 ms
17,408 KB
testcase_20 AC 435 ms
33,024 KB
testcase_21 AC 61 ms
6,912 KB
testcase_22 AC 714 ms
44,676 KB
testcase_23 AC 158 ms
12,672 KB
testcase_24 AC 74 ms
7,936 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 555 ms
38,144 KB
testcase_27 AC 693 ms
46,400 KB
testcase_28 AC 442 ms
27,284 KB
testcase_29 AC 124 ms
10,496 KB
testcase_30 AC 239 ms
18,048 KB
testcase_31 AC 147 ms
11,136 KB
testcase_32 AC 881 ms
51,176 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

int main(){
	
	int h,w;
	cin>>h>>w;
	vector<vector<int>> a(h,vector<int>(w));
	rep(i,h){
		rep(j,w)cin>>a[i][j];
	}
	map<int,pair<int,int>> mp;
	rep(i,h){
		rep(j,w)mp[a[i][j]] = make_pair(i,j);
	}
	vector ans(h,vector<int>(w,-1));
	
	vector<int> dx = {1,-1,0,0},dy = {0,0,1,-1};
	vector<priority_queue<int,vector<int>,greater<int>>> Q(2);
	rep(i,2){
		int x = 0,y = 0;
		if(i)x = h-1,y = w-1;
		ans[x][y] = i;
		rep(j,4){
			int xx = x+dx[j],yy = y+dy[j];
			//cout<<xx<<' '<<yy<<endl;
			if(xx<0||yy<0||xx>=h||yy>=w)continue;
			Q[i].push(a[xx][yy]);
		}
	}
	rep(_,10000000){
		int i = _%2;
		while(true){
			int u = Q[i].top();
			Q[i].pop();
			int x  =mp[u].first,y = mp[u].second;
			if(ans[x][y]!=-1)continue;
			
			ans[x][y] = i;
			rep(j,4){
				int xx = x+dx[j],yy = y+dy[j];
				if(xx<0||xx>=h||yy<0||yy>=w)continue;
				if(ans[xx][yy]!=-1 && ans[xx][yy]!=i){
					cout<<_+1<<endl;
					return 0;
				}
				Q[i].push(a[xx][yy]);
			}
			break;
		}
		
	}
	
	return 0;
}
0