結果

問題 No.942 プレゼント配り
ユーザー face4face4
提出日時 2019-12-05 12:08:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,251 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 70,300 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 23:10:10
合計ジャッジ時間 3,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 18 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 18 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
typedef long long ll;

int main(){
    int n, k;
    cin >> n >> k;
    if(n/k%2 == 0){
        cout << "Yes" << endl;
        for(int i = 0; i < n/k; i++){
            int from = i*k+1;
            for(int j = 0; j < k; j++){
                if(i%2) cout << from+j;
                else    cout << from+(k-1-j);
                cout << " \n"[j==k-1];
            }
        }
    }else{
        int t;
        for(t = 1; t*k <= n/k; t++){
            if((n/k-k*t)%2 == 0)    break;
        }
        if(t*k > n/k){
            cout << "No" << endl;
            return 0;
        }
        cout << "Yes" << endl;
        for(int i = 0; i < t*k; i++){
            vector<int> v(k);
            int from = i*k+1;
            for(int j = 0; j < k; j++){
                v[(i%k+j)%k] = from+j;
            }
            for(int j = 0; j < k; j++){
                cout << v[j] << " \n"[j==k-1];
            }
        }
        for(int i = t*k; i < n/k; i++){
            int from = i*k+1;
            for(int j = 0; j < k; j++){
                if(i%2) cout << from+j;
                else    cout << from+(k-1-j);
                cout << " \n"[j==k-1];
            }
        }
    }
    return 0;
}
0