結果

問題 No.630 門松グラフ
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-06-06 17:30:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 154 ms / 1,500 ms
コード長 993 bytes
コンパイル時間 1,412 ms
コンパイル使用メモリ 161,080 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 02:29:18
合計ジャッジ時間 5,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 154 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 154 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 142 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 139 ms
5,376 KB
testcase_27 AC 142 ms
5,376 KB
testcase_28 AC 147 ms
5,376 KB
testcase_29 AC 131 ms
5,376 KB
testcase_30 AC 146 ms
5,376 KB
testcase_31 AC 131 ms
5,376 KB
testcase_32 AC 71 ms
5,376 KB
testcase_33 AC 70 ms
5,376 KB
testcase_34 AC 108 ms
5,376 KB
testcase_35 AC 80 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.06.06 17:30:27
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n, m;
    cin >> n >> m;
    int k = n / 2;
    if (n - 1 > m || (ll)k * (n - k) < m) {
        puts("NO");
        return 0;
    }
    puts("YES");
    for (int i = 0; i < n; i++) {
        cout << i + 1 << " ";
    }
    cout << endl;
    for (int i = 0; i < k - 1; i++) {
        cout << i + 1 << " " << k + i + 1 << endl;
        cout << i + 1 << " " << k + i + 2 << endl;
        m -= 2;
    }
    cout << k << " " << k + k << endl;
    m--;
    if (n & 1) {
        cout << k << " " << k + k + 1 << endl;
        m--;
    }
    for (int i = 0; i < k; i++) {
        if (m == 0) break;
        for (int j = k; j < n; j++) {
            if (m == 0) break;
            if (k + i == j || k + i + 1 == j) continue;
            cout << i + 1 << " " << j + 1 << endl;
            m--;
        }
    }
    return 0;
}
0