結果

問題 No.2432 Flip and Move
ユーザー 沙耶花沙耶花
提出日時 2023-08-18 22:53:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,397 ms / 2,000 ms
コード長 1,243 bytes
コンパイル時間 4,023 ms
コンパイル使用メモリ 263,992 KB
実行使用メモリ 112,640 KB
最終ジャッジ日時 2024-11-28 09:14:37
合計ジャッジ時間 22,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 336 ms
112,640 KB
testcase_03 AC 1,397 ms
89,452 KB
testcase_04 AC 148 ms
57,984 KB
testcase_05 AC 144 ms
57,984 KB
testcase_06 AC 136 ms
46,128 KB
testcase_07 AC 889 ms
59,184 KB
testcase_08 AC 992 ms
63,884 KB
testcase_09 AC 1,321 ms
86,436 KB
testcase_10 AC 210 ms
72,336 KB
testcase_11 AC 232 ms
82,436 KB
testcase_12 AC 180 ms
62,344 KB
testcase_13 AC 186 ms
62,720 KB
testcase_14 AC 317 ms
22,948 KB
testcase_15 AC 1,096 ms
74,188 KB
testcase_16 AC 212 ms
25,088 KB
testcase_17 AC 942 ms
50,640 KB
testcase_18 AC 87 ms
17,024 KB
testcase_19 AC 685 ms
40,192 KB
testcase_20 AC 894 ms
55,908 KB
testcase_21 AC 507 ms
39,424 KB
testcase_22 AC 487 ms
45,260 KB
testcase_23 AC 61 ms
14,016 KB
testcase_24 AC 810 ms
48,768 KB
testcase_25 AC 577 ms
36,608 KB
testcase_26 AC 441 ms
44,972 KB
testcase_27 AC 11 ms
6,400 KB
testcase_28 AC 5 ms
5,248 KB
testcase_29 AC 502 ms
38,144 KB
testcase_30 AC 685 ms
52,608 KB
testcase_31 AC 289 ms
42,752 KB
testcase_32 AC 14 ms
7,040 KB
testcase_33 AC 659 ms
51,456 KB
testcase_34 AC 233 ms
28,416 KB
testcase_35 AC 156 ms
37,632 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:50:16: warning: 'D' may be used uninitialized [-Wmaybe-uninitialized]
   50 |         K %= (D*2);
      |              ~~^~~
main.cpp:19:13: note: 'D' was declared here
   19 |         int D;
      |             ^

ソースコード

diff #

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


int main(){
	
	int h,w;
	cin>>h>>w;
	
	long long K;
	cin>>K;
	int D;
	{
		vector f(h,vector(w,vector<int>(4,0)));
		int cx = 0,cy = 0;
		int d = 0;
		vector<int> dx = {1,-1};
		rep(i,Inf32){
			
			f[cx][cy][d] ++;
			int nx = cx+dx[d&1];
			int ny = cy+dx[(d>>1)&1];
			if(nx<0||nx>=h){
				d ^= 1;
			}
			else{
				cx = nx;
			}
			if(ny<0||ny>=w){
				d ^= 2;
			}
			else{
				cy = ny;
			}
			if(cx==0&&cy==0&&d==0){
				D = i+1;
				break;
			}
		}
		
	}
	
	K %= (D*2);
	{
		vector f(h,vector(w,vector<int>(4,0)));
		int cx = 0,cy = 0;
		int d = 0;
		vector<int> dx = {1,-1};
		rep(i,K){
			
			f[cx][cy][d] ++;
			int nx = cx+dx[d&1];
			int ny = cy+dx[(d>>1)&1];
			if(nx<0||nx>=h){
				d ^= 1;
			}
			else{
				cx = nx;
			}
			if(ny<0||ny>=w){
				d ^= 2;
			}
			else{
				cy = ny;
			}
		}
		rep(i,h){
			rep(j,w){
				int cur =0;
				rep(k,4){
					cur ^= f[i][j][k];
				}
				cur %= 2;
				if(cur%2==1)cout<<'#';
				else cout<<'.';
			}
			cout<<endl;
		}
	}
	
	return 0;
}
0