結果

問題 No.5017 Tool-assisted Shooting
ユーザー qLethonqLethon
提出日時 2023-07-16 18:59:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 9,166 bytes
コンパイル時間 3,843 ms
コンパイル使用メモリ 241,076 KB
実行使用メモリ 24,492 KB
スコア 2,740,328
平均クエリ数 580.00
最終ジャッジ日時 2023-07-16 19:05:47
合計ジャッジ時間 208,123 ms
ジャッジサーバーID
(参考情報)
judge16 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,946 ms
23,628 KB
testcase_01 TLE -
testcase_02 AC 1,736 ms
23,532 KB
testcase_03 TLE -
testcase_04 AC 1,856 ms
24,000 KB
testcase_05 AC 1,860 ms
23,424 KB
testcase_06 AC 1,917 ms
23,544 KB
testcase_07 AC 1,994 ms
24,396 KB
testcase_08 AC 1,839 ms
24,372 KB
testcase_09 AC 1,863 ms
23,364 KB
testcase_10 AC 1,889 ms
23,832 KB
testcase_11 AC 1,794 ms
23,424 KB
testcase_12 AC 1,979 ms
23,628 KB
testcase_13 AC 1,978 ms
24,000 KB
testcase_14 TLE -
testcase_15 AC 1,943 ms
24,288 KB
testcase_16 AC 1,752 ms
23,376 KB
testcase_17 AC 1,989 ms
24,492 KB
testcase_18 AC 1,984 ms
23,424 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,766 ms
23,388 KB
testcase_23 AC 1,886 ms
24,036 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,956 ms
24,024 KB
testcase_28 TLE -
testcase_29 AC 1,783 ms
24,048 KB
testcase_30 AC 1,661 ms
23,388 KB
testcase_31 AC 1,864 ms
24,036 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 1,970 ms
23,628 KB
testcase_35 AC 1,986 ms
24,384 KB
testcase_36 AC 1,954 ms
23,832 KB
testcase_37 TLE -
testcase_38 AC 1,924 ms
24,264 KB
testcase_39 AC 1,955 ms
24,060 KB
testcase_40 TLE -
testcase_41 AC 1,928 ms
23,652 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 1,841 ms
23,412 KB
testcase_48 TLE -
testcase_49 AC 1,960 ms
23,388 KB
testcase_50 AC 1,975 ms
24,288 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 AC 1,974 ms
24,360 KB
testcase_54 TLE -
testcase_55 AC 1,994 ms
24,264 KB
testcase_56 AC 1,918 ms
24,372 KB
testcase_57 AC 1,873 ms
24,000 KB
testcase_58 AC 1,983 ms
23,856 KB
testcase_59 TLE -
testcase_60 AC 1,935 ms
23,892 KB
testcase_61 AC 1,933 ms
24,264 KB
testcase_62 AC 1,927 ms
24,360 KB
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 AC 1,922 ms
23,616 KB
testcase_69 AC 1,919 ms
23,412 KB
testcase_70 AC 1,914 ms
24,288 KB
testcase_71 AC 1,982 ms
24,300 KB
testcase_72 AC 1,763 ms
24,264 KB
testcase_73 AC 1,975 ms
23,664 KB
testcase_74 AC 1,743 ms
23,532 KB
testcase_75 AC 1,940 ms
24,348 KB
testcase_76 AC 1,995 ms
23,532 KB
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 AC 1,991 ms
23,652 KB
testcase_81 AC 1,866 ms
23,376 KB
testcase_82 AC 1,891 ms
23,640 KB
testcase_83 AC 1,835 ms
24,060 KB
testcase_84 AC 1,912 ms
24,336 KB
testcase_85 TLE -
testcase_86 AC 1,954 ms
24,000 KB
testcase_87 AC 1,940 ms
24,384 KB
testcase_88 TLE -
testcase_89 AC 1,984 ms
23,400 KB
testcase_90 TLE -
testcase_91 TLE -
testcase_92 AC 1,706 ms
24,036 KB
testcase_93 AC 1,954 ms
23,520 KB
testcase_94 AC 1,825 ms
24,336 KB
testcase_95 AC 1,997 ms
23,628 KB
testcase_96 AC 1,991 ms
24,024 KB
testcase_97 TLE -
testcase_98 AC 1,977 ms
24,384 KB
testcase_99 AC 1,822 ms
23,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

// #define FROMFILE
// #define NOSUBMIT

#pragma GCC target("avx2")
#pragma GCC optimize("Ofast")
// #pragma GCC optimize("unroll-loops")

using namespace std;

using i64 = long long;

const i64 MOD = 1e9 + 7;
const i64 INF = i64(1e18);

template <typename T>
bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}


template <typename T>
bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}


namespace params{
void load_params(){
    ifstream ifs("../params.txt");
    assert(ifs.is_open());

    // TODO: load params
}
}

void read_file(istream& ifs){
    // TODO: read from file
}


constexpr int WIDTH = 40;
constexpr int DEPTH = 80;
constexpr int SWITCH = 650;
double power_weight = 2.983106703736028e-08;
double hp_weight = 7.33071295894495e-08;
double score_weight = 2.658190256186799e-07;

// [I 2023-07-16 18:50:00,676] Trial 21 finished with value: -45703.14 and parameters: {'p': 0.00020375070758042073, 'h': 4.0991579792965355e-05, 's': 1.291271324148235e-08, 't': 376}. Best is trial 21 with value: -45703.14.

constexpr int turn_max = 1000;
constexpr int n_col = 25;
constexpr int height = 60;
int turn = 0;
int now_x = 12;
struct State{
    bool exists = false;
    int max_hp = -1;
    int now_hp = -1;
    int power = -1;
};
vector<vector<State>> state;
vector<vector<int>> hp_inp, power_inp, col_inp;
vector<int> col_cnt;
int power = 0;
int score = 0;

bool input(){
    int n;
    cin >> n;
    if(n == -1){
        return false;
    }
    hp_inp.emplace_back(n);
    power_inp.emplace_back(n);
    col_inp.emplace_back(n);
    for(int i = 0; i < n; ++i){
        cin >> hp_inp.back()[i] >> power_inp.back()[i] >> col_inp.back()[i];
        // spawn at (*, 59)
        state[turn + height][col_inp.back()[i]] = { true, hp_inp.back()[i], hp_inp.back()[i], power_inp.back()[i] };
        ++col_cnt[col_inp.back()[i]];
    }
    return true;
}

State& get_state(int col_, int height_){
    return state[turn + height_ + 1][col_];
};

int solve(){
    // col: [0, 25)
    // height: [0, 60)
    vector<vector<int>> target_idxes(n_col);
    for(int i = 0; i < height; ++i){
        for(int j = 0; j < n_col; ++j){
            auto& st = get_state(j, i);
            if(st.exists){
                target_idxes[j].emplace_back(i);
            }
        }
    }

    struct BeamState{
        vector<pair<int,int>> killed;
        int x;
        int target_y = 0;
        int target_enemy_hp = 0;
        int got_score = 0, got_power = 0;
        int mov = 0;
        int dep = 0;
        double score() const{
            double w = double(turn + dep) / turn_max;
            return (1 - w) * (power_weight * got_power - hp_weight * target_enemy_hp) + w * score_weight * got_score;
        }
        int level() const{
            return 1 + got_power / 100;
        }
        bool operator==(const BeamState& a) const{
            return killed == a.killed && target_enemy_hp == a.target_enemy_hp && x == a.x && got_power == a.got_power && got_score == a.got_score;
        }
    };

    auto target = [&](BeamState& bs, int depth){
        // O(n^2) but fast
        for(auto y : target_idxes[bs.x]){
            if(depth <= y && find(bs.killed.begin(), bs.killed.end(), make_pair(bs.x, y)) == bs.killed.end()){
                return y;
            }
        }
        return -1;
    };

    auto cmp_fn = [](auto x, auto y){ return x.score() > y.score(); };

    constexpr bool tayousei = false;

    if(!tayousei){
        vector<BeamState> b_states;
        b_states.emplace_back();
        b_states.back().x = now_x;
        b_states.back().got_score = score;
        b_states.back().got_power = power;
        int first_tar = target(b_states.back(), 0);
        assert(first_tar != 0);
        b_states.back().target_y = first_tar;
        b_states.back().target_enemy_hp = get_state(now_x, first_tar).now_hp;
        for(int dep = 0; dep < DEPTH && dep + turn <= turn_max; ++dep){
            vector<BeamState> b_nex;
            for(auto &b_state: b_states){
                for(auto d: {0, 1, 24}){
                    auto nex = b_state;
                    nex.dep = dep;
                    nex.x = (nex.x + d) % n_col;
                    int tar = target(nex, dep);
                    if(dep == 0){
                        nex.mov = d == 24 ? -1 : d;
                    }
                    if(dep == tar){
                        continue;
                    }
                    if(tar != -1){
                        if(d == 0 && nex.target_y == tar){
                            nex.target_enemy_hp -= nex.level();
                        }else{
                            nex.target_enemy_hp = get_state(nex.x, tar).now_hp - nex.level();
                        }
                        if(nex.target_enemy_hp <= 0){
                            nex.got_power += get_state(nex.x, tar).power;
                            nex.got_score += get_state(nex.x, tar).max_hp;
                            nex.killed.emplace_back(nex.x, tar);
                        }else if(dep + 1 == tar){
                            continue;
                        }
                    }
                    nex.target_y = tar;
                    b_nex.emplace_back(nex);
                }
            }
            sort(b_nex.begin(), b_nex.end(), cmp_fn);
            b_nex.erase(unique(b_nex.begin(), b_nex.end()), b_nex.end());
            if(WIDTH < b_nex.size()){
                b_nex.resize(WIDTH);
            }
            swap(b_nex, b_states);
        }
        return b_states.front().mov;
    }
}

int distLeft(int a, int b) {
    return a < b ? 25 + a - b : a - b;
}

int distRight(int a, int b) {
    return a < b ? b - a : 25 + b - a;
}

bool sw = false;
int solve2(int t) {
    int lv = 1 + power / 100;
    double str = ((7.5+0.15*t)+(1.5+0.03*t)) / lv;
    if (str < 2) {
        sw = true;
    }
    vector<int> miny(25, 60);
    vector<pair<int, int>> rem;
    for (int x = 0; x < 25; x++) {
        for (int y = 0; y < 60; y++) {
            auto& st = get_state(x, y);
            if (st.exists) {
                rem.emplace_back(x, y);
                miny[x] = y;
                break;
            }
        }
    }
    pair<int, int> tai = make_pair(-1, -1);
    double md = 0x1000000;
    bool canMoveLeft = miny[(now_x+24)%25]>=2;
    bool canMoveRight = miny[(now_x+1)%25]>=2;
    for (auto [mx, my] : rem) {
        auto& st = get_state(mx, my);
        int dist = now_x == mx ? 0 : 0x1000000;
        if (canMoveLeft) {
            dist = min(dist, distLeft(now_x, mx));
        }
        if (canMoveRight) {
            dist = min(dist, distRight(now_x, mx));
        }
        int turn = dist + (st.now_hp + lv - 1) / lv;
        if (my - turn <= 0) {
            continue;
        }
        double val;
        if (sw) {
            val = turn;
        } else {
            val = -((double)st.power / turn);
        }
        if (tai.first == -1 || md > val) {
            tai = make_pair(mx, my);
            md = val;
        }
    }
    if (tai.first != -1) {
        if (miny[now_x] >= 2 && tai.first == now_x) {
            return 0;
        } else if (canMoveLeft && (!canMoveRight || distLeft(now_x, tai.first) < distRight(now_x, tai.first))) {
            return -1;
        } else {
            return 1;
        }
    } else {
        if (miny[now_x] >= 2) {
            return 0;
        } else if (canMoveLeft && !canMoveRight) {
            return -1;
        } else {
            return 1;
        }
    }
}

void act(int x_diff){
    assert(!get_state(now_x, 0).exists);
    if(x_diff == -1){
        cout << 'L' << endl;
        now_x = (now_x + 24) % n_col;
    }
    if(x_diff == 0){
        cout << 'S' << endl;
    }
    if(x_diff == 1){
        cout << 'R' << endl;
        now_x = (now_x + 1) % n_col;
    }
    assert(!get_state(now_x, 0).exists);
    for(int i = 0; i < height; ++i){
        auto& st = get_state(now_x, i);
        if(st.exists){
            assert(i != 0);
            int level = 1 + power / 100;
            st.now_hp -= level;
            if(st.now_hp <= 0){
                st.exists = false;
                power += st.power;
                score += st.max_hp;
            }
            assert(!(st.now_hp > 0 && i == 1));
            break;
        }
    }
}

signed main(){
    clock_t st = clock();

#ifdef OPTIMIZE
    params::load_params();
#endif

#ifdef NOSUBMIT
    vector<int> p(25);
    for(auto& x : p){
        cin >> x;
    }
#endif
    col_cnt.resize(n_col, 0);
    state.resize(turn_max + 100, vector<State>(n_col));
    for(turn = 0; turn < turn_max; ++turn){
        bool res = input();
        assert(res);
        // act(solve());
        // act(solve2(turn));
        if(turn < SWITCH){
            act(solve2(turn));
        }
        else{
            act(solve());
        }
    }
    cerr << "Score = " << score << endl;

/*
#ifndef FROMFILE
    // TODO: input
    read_file(cin);
#else
    ifstream ifs("../tools/in/0003.txt");
    assert(ifs.is_open());
    read_file(ifs);
#endif
 */

}
0