結果

問題 No.2731 Two Colors
ユーザー rotti_coderrotti_coder
提出日時 2024-04-19 21:55:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 650 ms / 3,000 ms
コード長 1,818 bytes
コンパイル時間 1,295 ms
コンパイル使用メモリ 87,048 KB
実行使用メモリ 24,044 KB
最終ジャッジ日時 2024-10-11 14:55:37
合計ジャッジ時間 9,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 635 ms
11,264 KB
testcase_01 AC 650 ms
11,520 KB
testcase_02 AC 637 ms
11,520 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 25 ms
5,248 KB
testcase_05 AC 19 ms
5,248 KB
testcase_06 AC 73 ms
7,052 KB
testcase_07 AC 82 ms
6,704 KB
testcase_08 AC 13 ms
5,248 KB
testcase_09 AC 301 ms
14,228 KB
testcase_10 AC 6 ms
5,248 KB
testcase_11 AC 326 ms
24,044 KB
testcase_12 AC 299 ms
13,928 KB
testcase_13 AC 270 ms
18,288 KB
testcase_14 AC 133 ms
8,680 KB
testcase_15 AC 12 ms
5,248 KB
testcase_16 AC 126 ms
10,436 KB
testcase_17 AC 178 ms
11,732 KB
testcase_18 AC 32 ms
5,248 KB
testcase_19 AC 134 ms
10,720 KB
testcase_20 AC 192 ms
9,532 KB
testcase_21 AC 35 ms
5,248 KB
testcase_22 AC 321 ms
17,348 KB
testcase_23 AC 80 ms
7,384 KB
testcase_24 AC 39 ms
5,324 KB
testcase_25 AC 4 ms
5,248 KB
testcase_26 AC 249 ms
13,064 KB
testcase_27 AC 320 ms
16,680 KB
testcase_28 AC 209 ms
14,552 KB
testcase_29 AC 64 ms
6,860 KB
testcase_30 AC 115 ms
9,256 KB
testcase_31 AC 77 ms
8,296 KB
testcase_32 AC 399 ms
22,304 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<iostream>
#include<vector>
#include<queue>
using namespace std;
int main()
{
  int h,w;
  cin >> h >> w;
  vector<vector<int>>num(h,vector<int>(w));
  for(int i=0;i<h;i++)for(int j=0;j<w;j++)cin >> num[i][j];
  priority_queue<vector<int>,vector<vector<int>>,greater<vector<int>>>prq1;
  priority_queue<vector<int>,vector<vector<int>>,greater<vector<int>>>prq2;
  vector<vector<int>>color(h,vector<int>(w,-1));
  prq1.push({0,0,0});
  prq2.push({0,h-1,w-1});
  int cnt=1,ans=0;
  while(true){
    ans++;
    if(cnt==1){
      int a,b;
      while(true){
	vector<int>hako=prq1.top();
	prq1.pop();
	a=hako[1];
	b=hako[2];
	if(color[a][b]==-1)break;
      }
      color[a][b]=1;
      if(a-1>=0){
	if(color[a-1][b]==0)break;
	else if(color[a-1][b]==-1)prq1.push({num[a-1][b],a-1,b});
      }
      if(b+1<w){
	if(color[a][b+1]==0)break;
	else if(color[a][b+1]==-1)prq1.push({num[a][b+1],a,b+1});
      }
      if(a+1<h){
	if(color[a+1][b]==0)break;
	else if(color[a+1][b]==-1)prq1.push({num[a+1][b],a+1,b});
      }
      if(b-1>=0){
	if(color[a][b-1]==0)break;
	else if(color[a][b-1]==-1)prq1.push({num[a][b-1],a,b-1});
      }
      cnt=0;
    }
    else{
      int a,b;
      while(true){
	vector<int>hako=prq2.top();
	prq2.pop();
	a=hako[1];
	b=hako[2];
	if(color[a][b]==-1)break;
      }
      color[a][b]=0;
      if(a-1>=0){
	if(color[a-1][b]==1)break;
	else if(color[a-1][b]==-1)prq2.push({num[a-1][b],a-1,b});
      }
      if(b+1<w){
	if(color[a][b+1]==1)break;
	else if(color[a][b+1]==-1)prq2.push({num[a][b+1],a,b+1});
      }
      if(a+1<h){
	if(color[a+1][b]==1)break;
	else if(color[a+1][b]==-1)prq2.push({num[a+1][b],a+1,b});
      }
      if(b-1>=0){
	if(color[a][b-1]==1)break;
	else if(color[a][b-1]==-1)prq2.push({num[a][b-1],a,b-1});
      }
      cnt=1;
    }
  }
  cout << ans-2 << endl;
}
0