結果
問題 | No.1434 Make Maze |
ユーザー | どらら |
提出日時 | 2021-03-19 23:56:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,813 bytes |
コンパイル時間 | 3,939 ms |
コンパイル使用メモリ | 230,980 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-19 02:53:37 |
合計ジャッジ時間 | 12,516 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 3 ms
5,248 KB |
testcase_21 | AC | 4 ms
5,248 KB |
testcase_22 | AC | 3 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
コンパイルメッセージ
main.cpp: In function 'bool check(ll, ll, ll, bool)': main.cpp:88:1: warning: control reaches end of non-void function [-Wreturn-type] 88 | } | ^
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; //using mint = modint1000000007; //using mint = modint998244353; char f[1005][1005]; bool check(ll H, ll W, ll X, bool flip){ rep(i,H) rep(j,W) f[i][j] = '.'; for(int i=1; i<W; i+=2){ rep(j,H) f[j][i] = '#'; if((i+1)%4!=0) f[H-1][i] = '.'; } ll h = (H+1)/2; ll w = (W+1)/2; ll mn = (h-1)*2 + (w-1)*2; ll mx = 0; if((W-1)%4 == 0){ mx = w*(h-1)*2 + (w-1)*2; if(X < mn || X > mx || (X-mn)%4!=0){ return false; } ll cnt = (mx-X)/4; vector<int> v; for(int i=3; i<W; i+=4) v.push_back(0); int p=0; while(cnt > 0){ v[p]++; p++; if(p>=v.size()) p=0; cnt--; } for(int i=3; i<W; i+=4){ f[2*v[(i-3)/4]][i] = '.'; } }else{ mx = (w-1)*(h-1)*2 + (w-1)*2; if(X < mn || X > mx || (X-mn)%4!=0){ return false; } ll cnt = (mx-X)/4; vector<int> v; for(int i=3; i<W; i+=4) v.push_back(0); int p=0; while(cnt > 0){ v[p]++; p++; if(p>=v.size()) p=0; cnt--; } for(int i=3; i<W; i+=4){ f[2*v[(i-3)/4]][i] = '.'; } } if(flip){ rep(i,W){ rep(j,H){ cout << f[j][i]; } cout << endl; } }else{ rep(i,H){ rep(j,W){ cout << f[i][j]; } cout << endl; } } } int main(){ ll H, W, X; cin >> H >> W >> X; if(check(H, W, X, false)) return 0; if(check(W, H, X, true)) return 0; cout << -1 << endl; return 0; }