結果
問題 | No.466 ジオラマ |
ユーザー | kimiyuki |
提出日時 | 2016-12-16 23:15:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,442 bytes |
コンパイル時間 | 766 ms |
コンパイル使用メモリ | 83,600 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-08 00:30:08 |
合計ジャッジ時間 | 19,921 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | RE | - |
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 | RE | - |
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 | AC | 5 ms
6,944 KB |
testcase_57 | AC | 2 ms
6,944 KB |
testcase_58 | AC | 3 ms
6,940 KB |
testcase_59 | AC | 2 ms
6,940 KB |
testcase_60 | AC | 6 ms
6,940 KB |
testcase_61 | AC | 2 ms
6,940 KB |
testcase_62 | AC | 5 ms
6,944 KB |
testcase_63 | AC | 2 ms
6,940 KB |
testcase_64 | AC | 4 ms
6,944 KB |
testcase_65 | AC | 2 ms
6,944 KB |
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
6,940 KB |
testcase_82 | WA | - |
testcase_83 | WA | - |
testcase_84 | AC | 16 ms
6,944 KB |
testcase_85 | RE | - |
testcase_86 | AC | 1 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #define repeat(i,n) for (int i = 0; (i) < int(n); ++(i)) using namespace std; int main() { int a, b, c, d; cin >> a >> b >> c >> d; vector<pair<int, int> > e; if (a == c and b == c) { repeat (i,c) e.emplace_back(i, (i+1)%c); } else if (a == 1) { repeat (i,b-1) e.emplace_back(i+1, i+2); } else if (b == 1) { repeat (i,a-1) e.emplace_back(i == 0 ? 0 : i+1, i+2); } else { throw 0; int A = 1000000; int B = 2000000; int C = 3000000; map<int,int> tr; repeat (i,a-c) e.emplace_back(A+i, A+i+1); repeat (i,b-c) e.emplace_back(B+i, B+i+1); repeat (i,c-1) e.emplace_back(C+i, C+i+1); if (a == c) A = C; if (b == c) B = C; tr[A+a-c] = C; tr[B+b-c] = C; map<int,int> compress; compress[A] = 0; compress[B] = 1; auto name = [&](int & i) { if (tr.count(i)) i = tr[i]; if (not compress.count(i)) { int size = compress.size(); compress[i] = size; } i = compress[i]; }; for (auto & it : e) { name(it.first); name(it.second); } } if (e.size() > d) { cout << -1 << endl; } else { cout << a+b-c << ' ' << e.size() << endl; for (auto it : e) cout << it.first << ' ' << it.second << endl; } return 0; }