結果
問題 | No.466 ジオラマ |
ユーザー | tubo28 |
提出日時 | 2016-12-16 03:19:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,227 bytes |
コンパイル時間 | 1,644 ms |
コンパイル使用メモリ | 174,676 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-05-07 15:55:22 |
合計ジャッジ時間 | 23,680 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 4 ms
5,504 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | RE | - |
testcase_74 | RE | - |
testcase_75 | RE | - |
testcase_76 | RE | - |
testcase_77 | RE | - |
testcase_78 | RE | - |
testcase_79 | RE | - |
testcase_80 | RE | - |
testcase_81 | AC | 2 ms
5,376 KB |
testcase_82 | RE | - |
testcase_83 | AC | 2 ms
5,376 KB |
testcase_84 | RE | - |
testcase_85 | RE | - |
testcase_86 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define all(c) begin(c), end(c) #define dump(x) cerr << __LINE__ << ":\t" #x " = " << x << endl int g[2010][2010]; bool solve(int a, int b, int c, int m){ int n = a + b + c; rep(i, n) rep(j, n) g[i][j] = false; int k = 2; vector<int> as, bs, cs; rep(i, a - 1) as.push_back(k++); rep(i, b - 1) bs.push_back(k++); if(!c){ if(!a || !b) return false; as.push_back(0); bs.push_back(1); } else { if(a) as.push_back(0); else cs.push_back(0); if(b) bs.push_back(1); else cs.push_back(1); rep(i, c - !a - !b) cs.push_back(k++); } sort(all(as)); sort(all(bs)); sort(all(cs)); dump(a); dump(b); dump(c); // for(auto &e : as) cout << e << ' '; // cout << endl; // for(auto &e : bs) cout << e << ' '; // cout << endl; // for(auto &e : cs) cout << e << ' '; // cout << endl; assert(k == n); rep(i, a - 1) g[as[i]][as[i+1]] = true, --m; rep(i, b - 1) g[bs[i]][bs[i+1]] = true, --m; rep(i, c - 1) g[cs[i]][cs[i+1]] = true, --m; if(a && c) g[as[0]][cs[0]] = true, --m; if(b && c) g[bs[0]][cs[0]] = true, --m; if(m < 0) return false; // auto fill_v = [&](const vector<int> &vs){ // rep(i, vs.size()) rep(j, i){ // if(m && !g[vs[i]][vs[j]]) g[vs[i]][vs[j]] = true, --m; // } // }; // auto fill_vw = [&](const vector<int> &vs, const vector<int> &ws){ // rep(i, vs.size()) rep(j, ws.size()){ // if(m && !g[vs[i]][ws[j]]) g[vs[i]][ws[j]] = true, --m; // } // }; // fill_v(as); // fill_v(bs); // fill_v(cs); // fill_vw(as, cs); // fill_vw(bs, cs); return true; } int main(){ int A, B, C, D; while(cin >> A >> B >> C >> D){ int a = A - C; int b = B - C; if(solve(a, b, C, D)){ int n = a + b + C; int m = 0; rep(i,n) rep(j,n) if(g[i][j]) ++m; cout << n << ' ' << m << '\n'; rep(i,n) rep(j,n) if(g[i][j]) cout << i << ' ' << j << '\n'; } else puts("-1"); } }