結果

問題 No.1851 Regular Tiling
ユーザー umezoumezo
提出日時 2022-02-25 23:31:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 1,289 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 193,060 KB
最終ジャッジ日時 2025-01-28 02:44:32
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:38:9: warning: ‘ni’ may be used uninitialized [-Wmaybe-uninitialized]
   38 |     int ni,nj;
      |         ^~
main.cpp:38:12: warning: ‘nj’ may be used uninitialized [-Wmaybe-uninitialized]
   38 |     int ni,nj;
      |            ^~

ソースコード

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 G[200][200];
int dx[4]={1,0,-1,0};
int dy[4]={0,1,0,-1};

bool f(int x,int y,int lh,int lw,int rh,int rw){
  int cnt=0;
  rep(i,4){
    int nx=x+dx[i],ny=y+dy[i];
    if(nx<lh || ny<lw || nx>=rh || ny>=rw) continue;
    if(G[nx][ny]==G[x][y]) cnt++;
  }
  if(G[x][y]==cnt) return true;
  else return false;
}
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  rep(i,200) rep(j,200){
    if(i%3==0 && j%3!=0) G[i][j]=1;
    else if(j%3==0 && i%3!=0) G[i][j]=1;
    else if(i%3!=0 && j%3!=0) G[i][j]=2;
  }
  
  int t;
  cin>>t;
  while(t--){
    int h,w;
    cin>>h>>w;
    int ni,nj;
    
    rep(i,3){
      bool b=true;
      rep(j,3){
        b=true;
        rep(x,h){
          rep(y,w){
            if(f(i+x,j+y,i,j,i+h,j+w)==false){
              b=false;
              break;
            }
          }
          if(b==false) break;
        }
        if(b){
          ni=i,nj=j;
          break;
        }
      }
      if(b) break;
    }
    
    for(int i=ni;i<ni+h;i++){
      for(int j=nj;j<nj+w;j++){
        if(j) cout<<" ";
        cout<<G[i][j];
      }
      cout<<endl;
    }
  }
   
  return 0;
}
0