結果
問題 | No.630 門松グラフ |
ユーザー | tottoripaper |
提出日時 | 2018-01-06 01:27:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,623 bytes |
コンパイル時間 | 1,688 ms |
コンパイル使用メモリ | 176,840 KB |
実行使用メモリ | 8,320 KB |
最終ジャッジ日時 | 2024-07-19 16:22:49 |
合計ジャッジ時間 | 6,598 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 139 ms
7,680 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 69 ms
6,940 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define fst(t) std::get<0>(t) #define snd(t) std::get<1>(t) #define thd(t) std::get<2>(t) #define unless(p) if(!(p)) #define until(p) while(!(p)) using ll = long long; using P = std::tuple<int,int>; const int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1}, dy[8] = {0, 0, -1, 1, -1, 1, -1, 1}; int N, M; int values[100100]; set<P> edges; bool can(){ if(M < N - 1){ // 非連結になってしまう return false; } if(M <= (N / 2) * ((N + 1) / 2)){ for(int i=1;i<=N;++i){ values[i] = i; if(edges.size() < M){ if(i <= N / 2){ edges.emplace(i, N / 2 + i); }else if(i < N / 2 * 2){ edges.emplace(i, i - N / 2 + 1); } } } if(N % 2 == 1){ edges.emplace(1, N); } for(int i=1;edges.size()<M&&i<=N/2;++i){ for(int j=1;edges.size()<M&&j<=(N+1)/2;++j){ edges.emplace(i, N / 2 + j); } } return true; } // 三角形ができてしまうので残念 return false; } int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); std::cin >> N >> M; if(can()){ std::cout << "YES" << std::endl; for(int i=1;i<=N;++i){ std::cout << values[i] << " \n"[i==N]; } for(const auto& p : edges){ int u, v; tie(u, v) = p; std::cout << u << " " << v << std::endl; } }else{ std::cout << "NO" << std::endl; } }