結果
問題 | No.942 プレゼント配り |
ユーザー | chocopuu |
提出日時 | 2019-12-05 04:08:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,668 bytes |
コンパイル時間 | 1,525 ms |
コンパイル使用メモリ | 173,236 KB |
実行使用メモリ | 7,892 KB |
最終ジャッジ日時 | 2024-05-09 07:51:31 |
合計ジャッジ時間 | 3,268 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 23 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 21 ms
6,940 KB |
testcase_05 | AC | 23 ms
6,940 KB |
testcase_06 | AC | 3 ms
7,892 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 17 ms
6,940 KB |
testcase_09 | AC | 20 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 19 ms
6,940 KB |
testcase_15 | AC | 15 ms
6,940 KB |
testcase_16 | AC | 16 ms
6,944 KB |
testcase_17 | AC | 15 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define REP(i,n) for(int i = 0;i < (int)(n);i++) #define RREP(i,n) for(int i = (int)n-1;i >= 0;i--) #define FOR(i,s,n) for(int i = s;i < (int)n;i++) #define RFOR(i,s,n) for(int i = (int)n-1;i >= s;i--) #define ALL(a) a.begin(),a.end() #define IN(a, x, b) (a<=x && x<b) template<class T>inline bool CHMAX(T&a,T b){if(a<b){a = b;return true;}return false;} template<class T>inline bool CHMIN(T&a,T b){if(a>b){a = b;return true;}return false;} constexpr long long INF = 1e18; signed main(){ int N,K; cin>>N>>K; int sum = N * (N + 1) / 2; if(sum % K){ cout << "No" << endl; return 0; } vector<vector<int>>ans(K); if(K % 2){ if(N == K){ cout << "No" << endl; return 0; }else if(N == 2 * K){ REP(i,K){ ans[i].push_back(i); ans[i].push_back(2*K-i-1); } }else if((N / K) % 2 == 0){ int turn = N / K; REP(i,turn / 2){ REP(j,K){ ans[j].push_back(i * 2 * K + j); ans[j].push_back(i * 2 * K + 2 * K - j - 1); } } }else{ REP(i,2*K){ if(i % 2)ans[i % K].push_back(K + i / 2); else ans[i % K].push_back(i / 2); } REP(i,K){ ans[i].push_back(3 * K - i - 1); } int turn = N / K - 3; REP(i,turn / 2){ REP(j,K){ ans[j].push_back(i * 2 * K + 3 * K + j); ans[j].push_back(i * 2 * K + 3 * K + 2 * K - j - 1); } } } }else{ int turn = N / K; REP(i,turn / 2){ REP(j,K){ ans[j].push_back(i * 2 * K + j); ans[j].push_back(i * 2 * K + 2 * K - j - 1); } } } cout << "Yes" << endl; REP(i,K){ REP(j,ans[i].size()){ if(j)cout << " "; cout << ans[i][j] + 1; } cout << endl; } }