結果

問題 No.630 門松グラフ
ユーザー KawattaTaidoKawattaTaido
提出日時 2020-05-19 01:02:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,551 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 200,108 KB
実行使用メモリ 13,832 KB
最終ジャッジ日時 2024-04-09 21:52:25
合計ジャッジ時間 6,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,948 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 4 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 154 ms
13,700 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 151 ms
13,832 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 130 ms
7,296 KB
testcase_25 WA -
testcase_26 AC 134 ms
6,944 KB
testcase_27 AC 132 ms
7,424 KB
testcase_28 AC 145 ms
13,312 KB
testcase_29 WA -
testcase_30 AC 141 ms
10,752 KB
testcase_31 AC 125 ms
9,604 KB
testcase_32 AC 69 ms
9,088 KB
testcase_33 AC 66 ms
7,168 KB
testcase_34 AC 101 ms
9,196 KB
testcase_35 AC 75 ms
7,552 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);
  int zero,one;
  zero = 1;
  one = (n+1)/2+1;
  rep(i,n){
    if(color[i]==1){
      cout << zero;
      zero++;
    }
    else{
      cout << one;
      one++;
    }
    cout << " \n"[i==n-1];
  }
  rep(i,n){
    for(auto j:g[i]){
      if(i<j) cout << i+1 << " " << j+1 << endl;
    }
  }
  
  return 0;
    

}
0