結果

問題 No.2432 Flip and Move
ユーザー umezoumezo
提出日時 2023-08-25 04:30:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,075 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 211,840 KB
実行使用メモリ 182,992 KB
最終ジャッジ日時 2024-06-06 05:06:12
合計ジャッジ時間 34,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1,019 ms
129,200 KB
testcase_03 TLE -
testcase_04 AC 12 ms
6,944 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 252 ms
36,316 KB
testcase_07 AC 1,344 ms
119,748 KB
testcase_08 AC 1,460 ms
129,668 KB
testcase_09 TLE -
testcase_10 AC 633 ms
82,888 KB
testcase_11 AC 726 ms
94,368 KB
testcase_12 AC 531 ms
71,280 KB
testcase_13 AC 360 ms
49,192 KB
testcase_14 AC 487 ms
43,400 KB
testcase_15 AC 1,727 ms
151,108 KB
testcase_16 AC 602 ms
53,120 KB
testcase_17 AC 1,436 ms
112,256 KB
testcase_18 AC 275 ms
34,176 KB
testcase_19 AC 1,090 ms
87,552 KB
testcase_20 AC 1,562 ms
123,872 KB
testcase_21 AC 1,040 ms
85,760 KB
testcase_22 AC 1,487 ms
98,560 KB
testcase_23 AC 195 ms
27,236 KB
testcase_24 AC 1,471 ms
107,904 KB
testcase_25 AC 984 ms
79,872 KB
testcase_26 AC 483 ms
51,440 KB
testcase_27 AC 23 ms
6,944 KB
testcase_28 AC 17 ms
6,940 KB
testcase_29 AC 1,246 ms
83,456 KB
testcase_30 AC 1,514 ms
116,608 KB
testcase_31 AC 497 ms
48,640 KB
testcase_32 AC 61 ms
11,648 KB
testcase_33 AC 1,465 ms
113,920 KB
testcase_34 AC 782 ms
60,800 KB
testcase_35 AC 243 ms
29,824 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 1 ms
6,940 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<<endl;
  }

  return 0;
}
0