結果
問題 | No.466 ジオラマ |
ユーザー |
|
提出日時 | 2016-12-16 23:26:44 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,647 bytes |
コンパイル時間 | 917 ms |
コンパイル使用メモリ | 87,712 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-30 21:52:52 |
合計ジャッジ時間 | 5,834 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 75 WA * 8 |
ソースコード
#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;bool impossible = false;vector<pair<int, int> > e;if (a == c and b == c) {if (c == 1) impossible = true;repeat (i,c) e.emplace_back(i, (i+1)%c);} else if (a == 1) {auto f = [&](int i) { return c == 1 and i == b ? 0 : i; };repeat (i,b-1) e.emplace_back(i+1, f(i+2));} else if (b == 1) {auto f = [&](int i) { return c == 1 and i == a ? 1 : i; };repeat (i,a-1) e.emplace_back(i == 0 ? 0 : i+1, f(i+2));} else {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 (impossible or 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;}