結果

問題 No.5016 Worst Mayor
ユーザー eijiroueijirou
提出日時 2023-04-29 14:40:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 3,686 bytes
コンパイル時間 2,869 ms
コンパイル使用メモリ 230,568 KB
実行使用メモリ 24,408 KB
スコア 15,050,191,887
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 14:41:12
合計ジャッジ時間 10,268 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
23,676 KB
testcase_01 AC 80 ms
24,408 KB
testcase_02 AC 97 ms
24,024 KB
testcase_03 AC 77 ms
23,400 KB
testcase_04 AC 77 ms
24,012 KB
testcase_05 AC 81 ms
24,024 KB
testcase_06 AC 76 ms
23,832 KB
testcase_07 AC 77 ms
23,652 KB
testcase_08 AC 72 ms
23,976 KB
testcase_09 AC 82 ms
24,060 KB
testcase_10 AC 83 ms
23,412 KB
testcase_11 AC 80 ms
23,616 KB
testcase_12 AC 85 ms
24,324 KB
testcase_13 AC 91 ms
23,664 KB
testcase_14 AC 81 ms
23,376 KB
testcase_15 AC 75 ms
23,652 KB
testcase_16 AC 79 ms
23,424 KB
testcase_17 AC 79 ms
24,048 KB
testcase_18 AC 81 ms
24,288 KB
testcase_19 AC 79 ms
23,388 KB
testcase_20 AC 76 ms
23,640 KB
testcase_21 AC 79 ms
23,664 KB
testcase_22 AC 78 ms
24,048 KB
testcase_23 AC 90 ms
24,024 KB
testcase_24 AC 82 ms
24,048 KB
testcase_25 AC 80 ms
23,412 KB
testcase_26 AC 80 ms
24,048 KB
testcase_27 AC 77 ms
24,276 KB
testcase_28 AC 79 ms
24,348 KB
testcase_29 AC 78 ms
23,616 KB
testcase_30 AC 77 ms
24,336 KB
testcase_31 AC 79 ms
24,048 KB
testcase_32 AC 79 ms
24,336 KB
testcase_33 AC 79 ms
24,276 KB
testcase_34 AC 77 ms
23,856 KB
testcase_35 AC 78 ms
24,036 KB
testcase_36 AC 79 ms
24,072 KB
testcase_37 AC 80 ms
23,628 KB
testcase_38 AC 80 ms
24,336 KB
testcase_39 AC 79 ms
23,976 KB
testcase_40 AC 80 ms
23,364 KB
testcase_41 AC 81 ms
24,036 KB
testcase_42 AC 77 ms
23,844 KB
testcase_43 AC 76 ms
23,652 KB
testcase_44 AC 88 ms
24,336 KB
testcase_45 AC 78 ms
24,324 KB
testcase_46 AC 79 ms
23,640 KB
testcase_47 AC 82 ms
23,436 KB
testcase_48 AC 80 ms
24,276 KB
testcase_49 AC 81 ms
23,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
// #include <atcoder/all>

using namespace std;
// using namespace atcoder;

constexpr double time_limit = 1.9;
constexpr int g = 14;
constexpr int slow = 1000;
constexpr int fast = 223;

struct Input {
    int n, t;
    vector<pair<int,int>> ab, cd;

    void input() {
        cin >> n >> t;

        ab.resize(n);
        cd.resize(n);
        for (int i = 0; i < n; ++i) {
            int a, b, c, d;
            cin >> a >> b >> c >> d;
            ab[i] = {a - 1, b - 1};
            cd[i] = {c - 1, d - 1};
        }
    }
};

long long expense(int people) {
    return floor(1e7 / sqrt(people));
}

constexpr int no_construction_turn = 350;
constexpr int min_people = 25;
constexpr int max_people = 100;
constexpr int add_people = 5;

struct Solver {
    int n, t;
    vector<pair<int,int>> ab, cd;
    vector<vector<bool>> h, v;
    long long money;
    int people;
    int constructions = 0;

    Solver(const Input& input) {
        n = input.n;
        t = input.t;
        ab = input.ab;
        cd = input.cd;
        h = vector<vector<bool>>(g, vector<bool>(g - 1, false));
        v = vector<vector<bool>>(g - 1, vector<bool>(g, false));
    }

    void solve() {
        for (int turn = 0; turn < t; ++turn) {
            cin >> money >> people;

            if (turn >= no_construction_turn) {
                cout << 3 << endl;
            } else if (money >= expense(people)) {
                auto [x, y, z, w] = choose_road();
                if (x == -1) {
                    cout << 3 << endl;
                    continue;
                }
                cout << 1 << " " << x + 1 << " " << y + 1 << " " << z + 1 << " " << w + 1 << endl;
                ++constructions;
            } else if (people < max(min_people, min(max_people, add_people * (constructions + 1)))) {
                cout << 2 << endl;
            } else {
                cout << 3 << endl;
            }
        }
    }

    tuple<int,int,int,int> choose_road() {
        for (int y = 4; y < 9; ++y) {
            if (!h[7][y]) {
                h[7][y] = true;
                return {7, y, 7, y + 1};
            }
        }
        for (int x = 4; x < 9; ++x) {
            if (!v[x][7]) {
                v[x][7] = true;
                return {x, 7, x + 1, 7};
            }
        }
        for (int y = 4; y < 9; ++y) {
            if (!h[4][y]) {
                h[4][y] = true;
                return {4, y, 4, y + 1};
            }
        }
        for (int x = 4; x < 9; ++x) {
            if (!v[x][4]) {
                v[x][4] = true;
                return {x, 4, x + 1, 4};
            }
        }
        for (int y = 4; y < 9; ++y) {
            if (!h[10][y]) {
                h[10][y] = true;
                return {10, y, 10, y + 1};
            }
        }
        for (int x = 4; x < 9; ++x) {
            if (!v[x][10]) {
                v[x][10] = true;
                return {x, 10, x + 1, 10};
            }
        }
        for (int x = 4; x <= 10; x += 3) {
            for (int y = 0; y < g - 1; ++y) {
                if (!h[x][y]) {
                    h[x][y] = true;
                    return {x, y, x, y + 1};
                }
            }
        }
        for (int y = 4; y <= 10; y += 3) {
            for (int x = 0; x < g - 1; ++x) {
                if (!v[x][y]) {
                    v[x][y] = true;
                    return {x, y, x + 1, y};
                }
            }
        }
        return {-1, -1, -1, -1};
    }
};

int main() {
    Input input;
    input.input();

    Solver solver(input);
    solver.solve();

    return 0;
}
0