結果

問題 No.630 門松グラフ
ユーザー KawattaTaidoKawattaTaido
提出日時 2020-05-19 01:08:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 127 ms / 1,500 ms
コード長 1,459 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 198,476 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-04-09 21:52:31
合計ジャッジ時間 4,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 118 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 121 ms
6,944 KB
testcase_27 AC 125 ms
6,940 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 120 ms
8,320 KB
testcase_30 AC 127 ms
7,984 KB
testcase_31 AC 119 ms
7,424 KB
testcase_32 AC 66 ms
7,296 KB
testcase_33 AC 64 ms
6,944 KB
testcase_34 AC 93 ms
7,604 KB
testcase_35 AC 73 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
  int poss_m = n/2 * ((n+1)/2);
  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;
    

}
0