結果

問題 No.942 プレゼント配り
ユーザー PachicobuePachicobue
提出日時 2019-12-05 03:41:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 6,240 bytes
コンパイル時間 3,256 ms
コンパイル使用メモリ 210,996 KB
実行使用メモリ 15,188 KB
最終ジャッジ日時 2023-08-21 18:34:06
合計ジャッジ時間 6,389 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
4,380 KB
testcase_07 RE -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
4,384 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,384 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 AC 2 ms
4,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: ラムダ関数内:
main.cpp:110:5: 警告: 制御が非 void 関数の終りに到達しました [-Wreturn-type]
  110 |     };
      |     ^

ソースコード

diff #

#include <bits/stdc++.h>
// created [2019/12/04] 23:59:42
#pragma GCC diagnostic ignored "-Wsign-compare"
#pragma GCC diagnostic ignored "-Wsign-conversion"

using i32 = int32_t;
using i64 = int64_t;
using u32 = uint32_t;
using u64 = uint64_t;
using uint = unsigned int;
using usize = std::size_t;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
template<typename T> constexpr T popcount(const T u) { return u ? static_cast<T>(__builtin_popcountll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T log2p1(const T u) { return u ? static_cast<T>(64 - __builtin_clzll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T msbp1(const T u) { return log2p1(u); }
template<typename T> constexpr T lsbp1(const T u) { return __builtin_ffsll(u); }
template<typename T> constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast<T>(u); }
template<typename T> constexpr bool ispow2(const T u) { return u and (static_cast<u64>(u) & static_cast<u64>(u - 1)) == 0; }
template<typename T> constexpr T ceil2(const T u) { return static_cast<T>(1) << clog(u); }
template<typename T> constexpr T floor2(const T u) { return u == 0 ? static_cast<T>(0) : static_cast<T>(1) << (log2p1(u) - 1); }
template<typename T> constexpr bool btest(const T mask, const usize ind) { return static_cast<bool>((static_cast<u64>(mask) >> ind) & static_cast<u64>(1)); }
template<typename T> void bset(T& mask, const usize ind) { mask |= (static_cast<T>(1) << ind); }
template<typename T> void breset(T& mask, const usize ind) { mask &= ~(static_cast<T>(1) << ind); }
template<typename T> void bflip(T& mask, const usize ind) { mask ^= (static_cast<T>(1) << ind); }
template<typename T> void bset(T& mask, const usize ind, const bool b) { (b ? bset(mask, ind) : breset(mask, ind)); }
template<typename T> constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast<T>(0) : static_cast<T>((static_cast<u64>(mask) << (64 - ind)) >> (64 - ind)); }
template<typename T> bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); }
template<typename T> bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); }
constexpr unsigned int mod                  = 1000000007;
template<typename T> constexpr T inf_v      = std::numeric_limits<T>::max() / 4;
template<typename Real> constexpr Real pi_v = Real{3.141592653589793238462643383279502884};

template<typename T>
T read()
{
    T v;
    return std::cin >> v, v;
}
template<typename T, typename... Args>
auto read(const usize size, Args... args)
{
    std::vector<decltype(read<T>(args...))> ans(size);
    for (usize i = 0; i < size; i++) { ans[i] = read<T>(args...); }
    return ans;
}
template<typename... Types>
auto reads() { return std::tuple<std::decay_t<Types>...>{read<Types>()...}; }
#    define SHOW(...) static_cast<void>(0)
constexpr ull TEN(const usize n) { return n == 0 ? 1ULL : TEN(n - 1) * 10ULL; }

template<typename T>
std::vector<T> make_v(const usize size, const T v) { return std::vector<T>(size, v); }
template<typename... Args>
auto make_v(const usize size, Args... args) { return std::vector<decltype(make_v(args...))>(size, make_v(args...)); }
int main()
{
    const int N = read<int>();
    const int K = read<int>();
    if ((N / K) % 2 == 1 and N % 2 == 0) { return std::cout << "No" << std::endl, 0; }
    const int M = N / K;
    if (M == 1) { return std::cout << "No" << std::endl, 0; }
    std::cout << "Yes" << std::endl;
    std::vector<std::vector<int>> ans;

    auto three = [&]() {
        if (K % 3 == 0) {
            const int L = (K - 3) / 6;
            std::vector<std::vector<int>> s;
            for (int i = 0; i <= L; i++) {
                s.push_back({2 * i, 3 * L + 1 - i, 6 * L + 2 - i});
                s.push_back({3 * L + 1 - i, 6 * L + 2 - i, 2 * i});
                s.push_back({6 * L + 2 - i, 2 * i, 3 * L + 1 - i});
            }
            for (int i = 0; i < L; i++) {
                s.push_back({1 + 2 * i, 4 * L + 1 - i, 5 * L + 1 - i});
                s.push_back({4 * L + 1 - i, 5 * L + 1 - i, 1 + 2 * i});
                s.push_back({5 * L + 1 - i, 1 + 2 * i, 4 * L + 1 - i});
            }
            std::vector<std::vector<int>> ans(K);
            for (int i = 0; i < K; i++) {
                const int x = s[i][0], y = s[i][1], z = s[i][2];
                ans[i] = {x, y + K, z + 2 * K};
            }
            return ans;
        } else if (K % 3 == 1) {
            const int L = (K - 1) / 6;
            std::vector<std::vector<int>> s;
            s.push_back({3 * L, 3 * L, 3 * L});
            for (int i = 0; i <= L; i++) {
                s.push_back({i, 3 * L + 1 + i});
                s.push_back({3 * L + 1 + i, 6 * L - 1 - 2 * i, i});
                s.push_back({6 * L - 1 - 2 * i, i, 3 * L + 1 + i});
            }
            for (int i = 0; i < L; i++) {
                s.push_back({i + L, 2 * L + i, 6 * L - 2 * i});
                s.push_back({2 * L + i, 6 * L - 2 * i, i + L});
                s.push_back({6 * L - 2 * i, i + L, 2 * L + i});
            }
            std::vector<std::vector<int>> ans(K);
            for (int i = 0; i < K; i++) {
                const int x = s[i][0], y = s[i][1], z = s[i][2];
                ans[i] = {x, y + K, z + 2 * K};
            }
            return ans;
        } else {
            // 大変
        }
    };

    if (M % 2 == 0) {
        // 昇順/降順 交互
        for (int i = 0; i < M; i++) {
            std::vector<int> r(K);
            for (int j = 0; j < K; j++) { r[j] = i * K + j; }
            if (i % 2 == 1) { std::reverse(r.begin(), r.end()); }
            ans.push_back(r);
        }
    } else {
        assert(K % 2 == 1);
        // 3段あればOK
        three();
        // 他の段は昇順/降順 交互
        for (int i = 3; i < M; i++) {
            std::vector<int> r(K);
            for (int j = 0; j < K; j++) { r[j] = i * K + j; }
            if (i % 2 == 1) { std::reverse(r.begin(), r.end()); }
            ans.push_back(r);
        }
    }

    for (int i = 0; i < K; i++) {
        for (int j = 0; j < M; j++) { std::cout << ans[i][j] + 1 << " "; }
        std::cout << std::endl;
    }

    return 0;
}
0