結果
問題 | No.1851 Regular Tiling |
ユーザー | 蜜蜂 |
提出日時 | 2022-01-10 21:39:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 107 ms / 2,000 ms |
コード長 | 1,087 bytes |
コンパイル時間 | 1,533 ms |
コンパイル使用メモリ | 171,920 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 15:26:34 |
合計ジャッジ時間 | 3,687 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 29 ms
6,944 KB |
testcase_02 | AC | 35 ms
6,940 KB |
testcase_03 | AC | 34 ms
6,940 KB |
testcase_04 | AC | 31 ms
6,944 KB |
testcase_05 | AC | 33 ms
6,940 KB |
testcase_06 | AC | 36 ms
6,944 KB |
testcase_07 | AC | 31 ms
6,944 KB |
testcase_08 | AC | 32 ms
6,940 KB |
testcase_09 | AC | 36 ms
6,940 KB |
testcase_10 | AC | 34 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,944 KB |
testcase_12 | AC | 3 ms
6,940 KB |
testcase_13 | AC | 61 ms
6,944 KB |
testcase_14 | AC | 107 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vll = vector<ll>; using vvll = vector<vll>; using vld = vector<ld>; using vvld = vector<vld>; #define fi first #define se second #define pb push_back #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) void solve(){ int h,w; cin>>h>>w; int x=((h+2)/3)*3,y=((w+2)/3)*3; vvi ans(x,vi(y)); rep(i,0,x){ rep(j,0,y){ if(i%3==0&&j%3==0){ ans[i][j]=0; } else if(i%3>=1&&j%3>=1){ ans[i][j]=2; } else{ ans[i][j]=1; } } } int start_x=0,end_x=x,start_y=0,end_y=y; if(h%3==1){ end_x-=2; } if(h%3==2){ start_x++; } if(w%3==1){ end_y-=2; } if(w%3==2){ start_y++; } rep(i,start_x,end_x){ rep(j,start_y,end_y){ cout<<ans[i][j]<<" "; } cout<<endl; } } int main(){ int t; cin>>t; while(t--){ solve(); } }