結果

問題 No.2432 Flip and Move
ユーザー umezoumezo
提出日時 2023-08-25 04:32:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,522 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 212,112 KB
実行使用メモリ 182,796 KB
最終ジャッジ日時 2024-06-06 05:07:23
合計ジャッジ時間 28,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1,031 ms
129,200 KB
testcase_03 AC 1,007 ms
182,796 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 247 ms
36,188 KB
testcase_07 AC 625 ms
119,808 KB
testcase_08 AC 713 ms
129,536 KB
testcase_09 AC 1,011 ms
176,504 KB
testcase_10 AC 620 ms
82,888 KB
testcase_11 AC 731 ms
94,236 KB
testcase_12 AC 523 ms
71,148 KB
testcase_13 AC 357 ms
49,060 KB
testcase_14 AC 213 ms
43,520 KB
testcase_15 AC 809 ms
151,040 KB
testcase_16 AC 630 ms
53,248 KB
testcase_17 AC 1,437 ms
112,128 KB
testcase_18 AC 287 ms
34,176 KB
testcase_19 AC 1,109 ms
87,552 KB
testcase_20 AC 1,522 ms
123,756 KB
testcase_21 AC 1,039 ms
85,760 KB
testcase_22 AC 1,219 ms
98,688 KB
testcase_23 AC 193 ms
27,264 KB
testcase_24 AC 1,480 ms
107,904 KB
testcase_25 AC 968 ms
79,872 KB
testcase_26 AC 442 ms
51,328 KB
testcase_27 AC 22 ms
6,944 KB
testcase_28 AC 17 ms
5,888 KB
testcase_29 AC 1,169 ms
83,456 KB
testcase_30 AC 1,483 ms
116,608 KB
testcase_31 AC 478 ms
48,640 KB
testcase_32 AC 60 ms
11,648 KB
testcase_33 AC 1,420 ms
113,920 KB
testcase_34 AC 752 ms
60,672 KB
testcase_35 AC 223 ms
29,696 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int h,w;
  ll k;
  cin>>h>>w>>k;
  vector<vector<char>> G(h,vector<char>(w,'.'));
  
  set<array<int,4>> s;
  int ni=0,nj=0,dh=1,dw=1;
  while(1){
  	s.insert({ni,nj,dh,dw});
  	if(dh==1){
  		if(ni==h-1) dh=0;
  		else ni++;
  	}
  	else{
  		if(ni==0) dh=1;
  		else ni--;
  	}
  	
  	if(dw==1){
  		if(nj==w-1) dw=0;
  		else nj++;
  	}
  	else{
  		if(nj==0) dw=1;
  		else nj--;
  	}
  
    if(s.count({ni,nj,dh,dw})) break;
  }
  int a=s.size();
  k%=a;
  
  ni=0,nj=0,dh=1,dw=1;
  while(k--){
  	if(G[ni][nj]=='.') G[ni][nj]='#';
  	else G[ni][nj]='.';
  	
  	if(dh==1){
  		if(ni==h-1) dh=0;
  		else ni++;
  	}
  	else{
  		if(ni==0) dh=1;
  		else ni--;
  	}
  	
  	if(dw==1){
  		if(nj==w-1) dw=0;
  		else nj++;
  	}
  	else{
  		if(nj==0) dw=1;
  		else nj--;
  	}
  }
  rep(i,h){
  	rep(j,w) cout<<G[i][j];
  	cout<<'\n';
  }

  return 0;
}
0