結果

問題 No.2432 Flip and Move
ユーザー 沙耶花沙耶花
提出日時 2023-08-18 22:53:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,556 ms / 2,000 ms
コード長 1,243 bytes
コンパイル時間 4,658 ms
コンパイル使用メモリ 263,864 KB
実行使用メモリ 112,876 KB
最終ジャッジ日時 2024-05-06 05:22:16
合計ジャッジ時間 23,411 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 334 ms
112,876 KB
testcase_03 AC 1,556 ms
89,456 KB
testcase_04 AC 153 ms
58,112 KB
testcase_05 AC 153 ms
58,112 KB
testcase_06 AC 138 ms
46,000 KB
testcase_07 AC 991 ms
59,180 KB
testcase_08 AC 1,071 ms
63,888 KB
testcase_09 AC 1,479 ms
86,308 KB
testcase_10 AC 208 ms
72,444 KB
testcase_11 AC 236 ms
82,544 KB
testcase_12 AC 178 ms
62,352 KB
testcase_13 AC 179 ms
62,576 KB
testcase_14 AC 337 ms
22,812 KB
testcase_15 AC 1,266 ms
74,184 KB
testcase_16 AC 244 ms
25,088 KB
testcase_17 AC 990 ms
50,640 KB
testcase_18 AC 119 ms
16,896 KB
testcase_19 AC 709 ms
40,320 KB
testcase_20 AC 957 ms
55,916 KB
testcase_21 AC 558 ms
39,424 KB
testcase_22 AC 497 ms
45,184 KB
testcase_23 AC 71 ms
14,020 KB
testcase_24 AC 836 ms
48,896 KB
testcase_25 AC 662 ms
36,608 KB
testcase_26 AC 478 ms
44,972 KB
testcase_27 AC 11 ms
6,528 KB
testcase_28 AC 6 ms
5,376 KB
testcase_29 AC 523 ms
38,272 KB
testcase_30 AC 690 ms
52,736 KB
testcase_31 AC 280 ms
42,752 KB
testcase_32 AC 15 ms
7,040 KB
testcase_33 AC 679 ms
51,328 KB
testcase_34 AC 263 ms
28,416 KB
testcase_35 AC 161 ms
37,760 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 2 ms
5,376 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