結果

問題 No.630 門松グラフ
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-06-06 17:29:41
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 976 bytes
コンパイル時間 1,315 ms
コンパイル使用メモリ 159,152 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-06 02:29:13
合計ジャッジ時間 6,980 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1 ms
6,944 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 AC 1 ms
6,940 KB
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.06.06 17:29:32
**/

#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;
    }
    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