結果
問題 | No.942 プレゼント配り |
ユーザー | chocorusk |
提出日時 | 2019-12-05 00:18:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,235 bytes |
コンパイル時間 | 1,234 ms |
コンパイル使用メモリ | 115,992 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 12:37:10 |
合計ジャッジ時間 | 3,098 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 23 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 23 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 18 ms
5,376 KB |
testcase_09 | AC | 22 ms
5,376 KB |
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 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<ll, ll> P; int main() { int n, k; cin>>n>>k; if(n==1){ cout<<"Yes"<<endl; cout<<1<<endl; return 0; } if(n==k){ cout<<"No"<<endl; return 0; } if((n/k)%2==1 && k%2==0){ cout<<"No"<<endl; return 0; } if((n/k)%2==0){ cout<<"Yes"<<endl; vector<vector<int>> ans(k); for(int i=0; i<n/k; i++){ if(i&1){ for(int j=0; j<k; j++){ ans[j].push_back(1+i*k+k-1-j); } }else{ for(int j=0; j<k; j++){ ans[j].push_back(1+i*k+j); } } } for(int i=0; i<k; i++){ for(int j=0; j<n/k; j++){ cout<<ans[i][j]<<" "; } cout<<endl; } return 0; } cout<<"Yes"<<endl; vector<vector<int>> ans(k); for(int i=0; i<k; i++) ans[i].push_back(i); int t=k+1; for(int i=k/2+1; i<k; i++){ ans[i].push_back(t); t++; } for(int i=0; i<=k/2; i++){ ans[i].push_back(t); t++; } int s=3*(3*k+1)/2; for(int i=0; i<k; i++){ ans[i].push_back(s-ans[i][0]-ans[i][1]); } for(int i=3; i<n/k; i++){ if(i&1){ for(int j=0; j<k; j++){ ans[j].push_back(1+i*k+k-1-j); } }else{ for(int j=0; j<k; j++){ ans[j].push_back(1+i*k+j); } } } for(int i=0; i<k; i++){ for(int j=0; j<n/k; j++){ cout<<ans[i][j]<<" "; } cout<<endl; } return 0; }