結果

問題 No.2432 Flip and Move
ユーザー umezoumezo
提出日時 2023-08-25 04:32:04
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,756 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 211,836 KB
実行使用メモリ 182,924 KB
最終ジャッジ日時 2024-12-23 16:43:46
合計ジャッジ時間 32,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1,106 ms
129,204 KB
testcase_03 AC 1,092 ms
182,924 KB
testcase_04 AC 14 ms
5,248 KB
testcase_05 AC 13 ms
5,248 KB
testcase_06 AC 275 ms
36,184 KB
testcase_07 AC 691 ms
119,680 KB
testcase_08 AC 760 ms
129,608 KB
testcase_09 AC 1,069 ms
176,432 KB
testcase_10 AC 680 ms
82,764 KB
testcase_11 AC 784 ms
94,236 KB
testcase_12 AC 571 ms
71,148 KB
testcase_13 AC 389 ms
49,060 KB
testcase_14 AC 224 ms
43,460 KB
testcase_15 AC 882 ms
151,168 KB
testcase_16 AC 709 ms
53,248 KB
testcase_17 AC 1,623 ms
112,256 KB
testcase_18 AC 318 ms
34,176 KB
testcase_19 AC 1,211 ms
87,552 KB
testcase_20 AC 1,695 ms
123,880 KB
testcase_21 AC 1,211 ms
85,632 KB
testcase_22 AC 1,415 ms
98,560 KB
testcase_23 AC 219 ms
27,368 KB
testcase_24 AC 1,650 ms
107,904 KB
testcase_25 AC 1,106 ms
79,744 KB
testcase_26 AC 547 ms
51,316 KB
testcase_27 AC 25 ms
6,912 KB
testcase_28 AC 19 ms
6,820 KB
testcase_29 AC 1,533 ms
83,328 KB
testcase_30 AC 1,697 ms
116,608 KB
testcase_31 AC 568 ms
48,640 KB
testcase_32 AC 71 ms
11,648 KB
testcase_33 AC 1,756 ms
113,920 KB
testcase_34 AC 829 ms
60,672 KB
testcase_35 AC 263 ms
29,696 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 2 ms
6,820 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