結果

問題 No.2946 Puyo
ユーザー kotatsugamekotatsugame
提出日時 2024-10-25 21:24:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 72,872 KB
実行使用メモリ 9,292 KB
最終ジャッジ日時 2024-10-25 21:24:34
合計ジャッジ時間 4,478 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 67 ms
8,448 KB
testcase_04 AC 67 ms
8,320 KB
testcase_05 AC 67 ms
8,448 KB
testcase_06 AC 67 ms
8,448 KB
testcase_07 AC 68 ms
8,448 KB
testcase_08 AC 7 ms
6,820 KB
testcase_09 AC 26 ms
7,552 KB
testcase_10 AC 10 ms
7,296 KB
testcase_11 AC 35 ms
6,820 KB
testcase_12 AC 7 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 12 ms
6,820 KB
testcase_15 AC 6 ms
6,820 KB
testcase_16 AC 14 ms
6,820 KB
testcase_17 AC 42 ms
6,820 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 20 ms
6,820 KB
testcase_20 AC 28 ms
7,296 KB
testcase_21 AC 45 ms
7,808 KB
testcase_22 AC 7 ms
6,816 KB
testcase_23 AC 25 ms
6,816 KB
testcase_24 AC 57 ms
7,808 KB
testcase_25 AC 50 ms
7,680 KB
testcase_26 AC 54 ms
7,552 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 25 ms
7,560 KB
testcase_29 AC 35 ms
8,400 KB
testcase_30 AC 21 ms
6,904 KB
testcase_31 AC 31 ms
7,768 KB
testcase_32 AC 31 ms
7,296 KB
testcase_33 AC 29 ms
6,816 KB
testcase_34 AC 40 ms
7,424 KB
testcase_35 AC 35 ms
6,816 KB
testcase_36 AC 38 ms
7,808 KB
testcase_37 AC 45 ms
7,424 KB
testcase_38 AC 33 ms
6,912 KB
testcase_39 AC 33 ms
6,820 KB
testcase_40 AC 22 ms
6,820 KB
testcase_41 AC 44 ms
7,808 KB
testcase_42 AC 40 ms
6,816 KB
testcase_43 AC 27 ms
9,292 KB
testcase_44 AC 33 ms
9,228 KB
testcase_45 AC 26 ms
7,716 KB
testcase_46 AC 16 ms
6,820 KB
testcase_47 AC 24 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:22:29: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   22 |                         auto[x,y]=Q[k];
      |                             ^
main.cpp:33:25: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   33 |                 for(auto[x,y]:Q)sz[x][y]=Q.size();
      |                         ^

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
const int d[5]={0,1,0,-1};
int H,W;
string G[1000];
int sz[1000][1000];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>H>>W;
	for(int i=0;i<H;i++)cin>>G[i];
	for(int i=0;i<H;i++)for(int j=0;j<W;j++)if(sz[i][j]==0)
	{
		vector<pair<int,int> >Q;
		Q.push_back(make_pair(i,j));
		sz[i][j]=-1;
		for(int k=0;k<Q.size();k++)
		{
			auto[x,y]=Q[k];
			for(int r=0;r<4;r++)
			{
				int tx=x+d[r],ty=y+d[r+1];
				if(tx>=0&&ty>=0&&tx<H&&ty<W&&G[x][y]==G[tx][ty]&&sz[tx][ty]==0)
				{
					sz[tx][ty]=-1;
					Q.push_back(make_pair(tx,ty));
				}
			}
		}
		for(auto[x,y]:Q)sz[x][y]=Q.size();
	}
	for(int i=0;i<H;i++)
	{
		for(int j=0;j<W;j++)cout<<(sz[i][j]>=4?'.':G[i][j]);
		cout<<"\n";
	}
}
0