結果
問題 | No.942 プレゼント配り |
ユーザー | 👑 emthrm |
提出日時 | 2019-12-05 00:34:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,609 bytes |
コンパイル時間 | 1,272 ms |
コンパイル使用メモリ | 127,904 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-14 17:02:16 |
合計ジャッジ時間 | 3,260 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 14 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | AC | 14 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | AC | 15 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <chrono> #define _USE_MATH_DEFINES #include <cmath> #include <cstring> #include <ctime> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <iterator> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <tuple> #include <utility> #include <vector> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() const int INF = 0x3f3f3f3f; const long long LINF = 0x3f3f3f3f3f3f3f3fLL; const double EPS = 1e-8; const int MOD = 1000000007; // const int MOD = 998244353; const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1}; // const int dy[] = {1, 1, 0, -1, -1, -1, 0, 1}, // dx[] = {0, -1, -1, -1, 0, 1, 1, 1}; struct IOSetup { IOSetup() { cin.tie(nullptr); ios_base::sync_with_stdio(false); cout << fixed << setprecision(20); cerr << fixed << setprecision(10); } } iosetup; /*-------------------------------------------------*/ int main() { int n, k; cin >> n >> k; if (k == 1) { cout << "Yes\n"; FOR(i, 1, n + 1) cout << i << (i + 1 == n ? '\n' : ' '); return 0; } if (k == 2) { if (n % 4 != 0) { cout << "No\n"; return 0; } vector<vector<int> > ans(k); int now = 1; bool uekara = true; while (now < n) { if (uekara) { ans[0].emplace_back(now++); ans[1].emplace_back(now++); } else { ans[1].emplace_back(now++); ans[0].emplace_back(now++); } uekara = !uekara; } cout << "Yes\n"; REP(i, k) REP(j, n / k) cout << ans[i][j] << (j + 1 == n / k ? '\n' : ' '); return 0; } if (n / k == 2) { vector<vector<int> > ans(k); FOR(i, 1, k + 1) ans[i - 1].emplace_back(i); FOR(i, k + 1, n + 1) ans[k - 1 - (i - (k + 1))].emplace_back(i); cout << "Yes\n"; REP(i, k) cout << ans[i][0] << ' ' << ans[i][1] << '\n'; return 0; } if (n == k || k % 2 == 0) { cout << "No\n"; return 0; } vector<vector<int> > ans(k); for (int i = 1; i <= n;) { if (i + k * 3 - 1 == n) { REP(j, k) ans[j].emplace_back(i++); FOR(j, k / 2 + 1, k) ans[j].emplace_back(i++); REP(j, k / 2 + 1) ans[j].emplace_back(i++); } else { REP(j, k) ans[j].emplace_back(i++); for (int j = k - 1; j >= 0; --j) ans[j].emplace_back(i++); } } cout << "Yes\n"; REP(i, k) REP(j, n / k) cout << ans[i][j] << (j + 1 == n / k ? '\n' : ' '); return 0; }