結果

問題 No.5016 Worst Mayor
ユーザー trineutrontrineutron
提出日時 2023-04-29 10:22:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 4,006 bytes
コンパイル時間 891 ms
コンパイル使用メモリ 97,332 KB
実行使用メモリ 24,492 KB
スコア 1,107,014,880
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 12:37:32
合計ジャッジ時間 9,091 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
23,376 KB
testcase_01 AC 105 ms
23,544 KB
testcase_02 AC 104 ms
23,664 KB
testcase_03 AC 103 ms
23,388 KB
testcase_04 AC 105 ms
24,072 KB
testcase_05 AC 108 ms
23,376 KB
testcase_06 AC 107 ms
23,424 KB
testcase_07 AC 107 ms
24,324 KB
testcase_08 AC 110 ms
24,240 KB
testcase_09 AC 107 ms
24,324 KB
testcase_10 AC 107 ms
24,264 KB
testcase_11 AC 107 ms
24,024 KB
testcase_12 AC 109 ms
23,520 KB
testcase_13 AC 107 ms
23,676 KB
testcase_14 AC 108 ms
24,060 KB
testcase_15 AC 109 ms
23,712 KB
testcase_16 AC 100 ms
23,676 KB
testcase_17 AC 107 ms
24,408 KB
testcase_18 AC 106 ms
23,652 KB
testcase_19 AC 109 ms
24,336 KB
testcase_20 AC 105 ms
23,652 KB
testcase_21 AC 110 ms
23,652 KB
testcase_22 AC 106 ms
23,844 KB
testcase_23 AC 109 ms
23,400 KB
testcase_24 AC 106 ms
23,424 KB
testcase_25 AC 106 ms
23,532 KB
testcase_26 AC 106 ms
24,024 KB
testcase_27 AC 105 ms
23,628 KB
testcase_28 AC 109 ms
24,348 KB
testcase_29 AC 109 ms
23,628 KB
testcase_30 AC 106 ms
23,376 KB
testcase_31 AC 106 ms
23,844 KB
testcase_32 AC 108 ms
23,844 KB
testcase_33 AC 106 ms
24,252 KB
testcase_34 AC 104 ms
24,336 KB
testcase_35 AC 107 ms
23,544 KB
testcase_36 AC 107 ms
23,844 KB
testcase_37 AC 107 ms
24,348 KB
testcase_38 AC 107 ms
24,048 KB
testcase_39 AC 104 ms
23,844 KB
testcase_40 AC 106 ms
24,492 KB
testcase_41 AC 107 ms
23,412 KB
testcase_42 AC 103 ms
23,544 KB
testcase_43 AC 108 ms
23,544 KB
testcase_44 AC 106 ms
24,048 KB
testcase_45 AC 106 ms
24,336 KB
testcase_46 AC 112 ms
23,544 KB
testcase_47 AC 108 ms
23,844 KB
testcase_48 AC 112 ms
24,324 KB
testcase_49 AC 108 ms
23,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <array>
#include <cassert>
#include <cmath>
#include <iostream>
#include <random>

class xrand {
    uint64_t x;

   public:
    using result_type = uint32_t;
    static constexpr result_type min() {
        return std::numeric_limits<result_type>::min();
    }
    static constexpr result_type max() {
        return std::numeric_limits<result_type>::max();
    }
    xrand(uint64_t k) : x(k) {}
    xrand() : xrand(1) {}
    result_type operator()() {
        x ^= x << 9;
        x ^= x >> 7;
        return (x * 0x123456789abcdef) >> 32;
    }
};

xrand rng;
std::uniform_int_distribution<> dist4(0, 3), dist14(0, 13);
constexpr std::array<int, 4> dx{1, 0, -1, 0}, dy{0, 1, 0, -1};

constexpr int N = 3000, T = 400;
std::array<int, N> A, B, C, D;

std::array<int, 26001> income;
std::array<int, 14 * 14 * 14 * 14> cost;

constexpr bool in_grid(unsigned x, unsigned y) { return x < 14 and y < 14; }

constexpr int id(unsigned x, unsigned y) { return 14 * x + y; }

constexpr int id4(unsigned x, unsigned y, unsigned z, unsigned w) {
    return 2744 * x + 196 * y + 14 * z + w;
}

int main() {
    for (int i = 0; i <= 26; i++) {
        for (int j = 0; j <= 26000 / 223; j++) {
            int dist = 1000 * i + 223 * j;
            if (dist > 26000) break;
            income.at(dist) = 60 * j;
        }
    }

    for (int x = 0; x < 14; x++) {
        for (int y = 0; y < 14; y++) {
            for (int z = 0; z < 14; z++) {
                for (int w = 0; w < 14; w++) {
                    cost.at(id4(x, y, z, w)) = 1000 * (abs(x - z) + abs(y - w));
                }
            }
        }
    }

    int n, t;
    std::cin >> n >> t;
    for (int i = 0; i < N; i++) {
        std::cin >> A.at(i) >> B.at(i) >> C.at(i) >> D.at(i);
        A.at(i)--;
        B.at(i)--;
        C.at(i)--;
        D.at(i)--;
    }

    int64_t money = 1000000, collaborator = 1, income_turn = 0;
    for (int turn = 0; turn < T; turn++) {
        int64_t u, v;
        std::cin >> u >> v;
        assert(u == money);
        assert(v == collaborator);
        if (u == -1 and v == -1) {
            return 0;
        }

        int64_t d = 10000000 / sqrt(collaborator);
        assert(d * d * collaborator <= 100000000000000);
        assert((d + 1) * (d + 1) * collaborator > 100000000000000);
        int action = 1;
        if (turn < 99) {
            action = 2;
        } else if (money < d) {
            action = 3;
        }

        int dir, x, y, z, w;
        do {
            dir = dist4(rng);
            x = dist14(rng);
            y = dist14(rng);
            z = x + dx[dir];
            w = y + dy[dir];
        } while (not in_grid(z, w) or cost.at(id4(x, y, z, w)) != 1000);

        if (action == 1) {
            std::cout << action << ' ' << x + 1 << ' ' << y + 1 << ' ' << z + 1
                      << ' ' << w + 1 << std::endl;
        } else {
            std::cout << action << std::endl;
        }

        if (action == 1) {
            money -= d;
            if (money < 0) {
                money = -1;
                collaborator = -1;
                continue;
            }

            int k = id(x, y), l = id(z, w);
            for (int i = 0; i < 196; i++) {
                for (int j = 0; j < 196; j++) {
                    cost.at(196 * i + j) = std::min(
                        cost.at(196 * i + j),
                        cost.at(196 * i + k) + 223 + cost.at(196 * l + j));
                    cost.at(196 * i + j) = std::min(
                        cost.at(196 * i + j),
                        cost.at(196 * i + l) + 223 + cost.at(196 * k + j));
                }
            }

            income_turn = 0;
            for (int i = 0; i < N; i++) {
                income_turn +=
                    income.at(cost.at(id4(A.at(i), B.at(i), C.at(i), D.at(i))));
            }
        } else if (action == 2) {
            collaborator++;
        } else {
            money += 50000;
        }

        money += income_turn;
    }

    return 0;
}
0