結果
問題 | No.630 門松グラフ |
ユーザー | KawattaTaido |
提出日時 | 2020-05-19 01:14:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,481 bytes |
コンパイル時間 | 1,885 ms |
コンパイル使用メモリ | 203,664 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-10-01 22:24:18 |
合計ジャッジ時間 | 8,724 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define pb push_back typedef long long ll; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define rep1(i,n) for(int i=1;i<=(int)(n);i++) const int n_max = 1e5+10; vector<int> g[n_max]; // vector<int> color(n_max,-1); // bool ok = true; // void dfs(int cv, int cc){ // color[cv] = cc; // int nc = (cc+1)%2; // for(auto i:g[cv]){ // if(color[i]>=0){ // // cout << i <<" " << color[i] << endl; // if(color[i] == nc) continue; // else ok = false; // } // else{ // color[i] = nc; // dfs(i,nc); // } // } // } int main(){ ios::sync_with_stdio(false); cin.tie(0); int n,m; cin >> n >> m; ll poss_m = n/2 * ((n+1)/2); cout << poss_m << endl; if(poss_m < m || m < n-1){ cout << "NO" << endl; return 0; } cout << "YES" << endl; rep(i,(n+1)/2){ if(i+(n+1)/2 < n){ g[i].pb(i+(n+1)/2); g[i+(n+1)/2].pb(i); } if(i+(n+1)/2-1>=(n+1)/2){ g[i].pb(i+(n+1)/2-1); g[i+(n+1)/2-1].pb(i); } } m-=n-1; rep(i,(n+1)/2){ for(int j =(n+1)/2;j<n;j++){ if(m==0) break; if(j==i+(n+1)/2 || j==i+(n+1)/2-1) continue; else{ m--; g[i].pb(j); g[j].pb(i); } } if(m==0) break; } // dfs(0,1); // assert(ok); rep(i,n){ cout << i+1 << " \n"[i==n-1]; } rep(i,n){ for(auto j:g[i]){ if(i<j) cout << i+1 << " " << j+1 << endl; } } return 0; }