結果

問題 No.2375 watasou and hibit's baseball
ユーザー poyonpoyon
提出日時 2023-06-27 18:45:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,963 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 211,436 KB
実行使用メモリ 5,196 KB
最終ジャッジ日時 2023-09-22 17:37:40
合計ジャッジ時間 50,346 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,910 ms
4,380 KB
testcase_01 AC 1,910 ms
4,376 KB
testcase_02 AC 1,910 ms
4,380 KB
testcase_03 WA -
testcase_04 AC 1,911 ms
4,380 KB
testcase_05 AC 1,912 ms
4,376 KB
testcase_06 AC 1,910 ms
4,376 KB
testcase_07 AC 1,909 ms
4,376 KB
testcase_08 AC 1,910 ms
4,380 KB
testcase_09 AC 1,911 ms
4,376 KB
testcase_10 AC 1,910 ms
4,376 KB
testcase_11 AC 1,910 ms
4,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1,910 ms
4,376 KB
testcase_15 AC 1,910 ms
4,380 KB
testcase_16 AC 1,913 ms
4,376 KB
testcase_17 WA -
testcase_18 AC 1,910 ms
4,380 KB
testcase_19 AC 1,912 ms
4,380 KB
testcase_20 AC 1,911 ms
4,380 KB
testcase_21 WA -
testcase_22 AC 1,910 ms
4,380 KB
testcase_23 AC 1,912 ms
4,380 KB
testcase_24 AC 1,910 ms
4,376 KB
testcase_25 AC 1,911 ms
4,508 KB
testcase_26 AC 1,911 ms
4,376 KB
testcase_27 AC 1,911 ms
4,380 KB
testcase_28 WA -
testcase_29 AC 1,910 ms
4,504 KB
testcase_30 AC 1,910 ms
4,376 KB
testcase_31 AC 1,911 ms
4,380 KB
testcase_32 AC 1,911 ms
4,376 KB
testcase_33 WA -
testcase_34 AC 1,910 ms
4,376 KB
testcase_35 AC 1,910 ms
4,380 KB
testcase_36 AC 1,911 ms
4,376 KB
testcase_37 AC 1,912 ms
4,380 KB
testcase_38 AC 1,910 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 嘘解法 (TLE)
// 時間いっぱい乱択

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);

    double TL_sec = 1.90;
    auto cur_time = []() -> double { return (double)clock() / CLOCKS_PER_SEC; };
    double start_time = cur_time();
    auto time_limit_over = [&]() -> bool { return TL_sec < cur_time() - start_time; };

    int N, A, B;
    cin >> N >> A >> B;
    vector<int> X(N), Y(N), K(N);
    for (int i = 0; i < N; i++) { cin >> X[i] >> Y[i] >> K[i]; }

    vector<vector<vector<bool>>> ok(N, vector<vector<bool>>(N, vector<bool>(N)));
    // a -> b
    for (int a = 0; a < N; a++) {
        for (int b = 0; b < N; b++) {
            if (a == b) { continue; }
            int d = abs(X[b] - X[a]) + abs(Y[b] - Y[a]);
            int v = abs(K[b] - K[a]);
            if (d >= A || v >= B) { ok[a][a][b] = true; }
        }
    }
    // a -> b -> c
    for (int a = 0; a < N; a++) {
        for (int b = 0; b < N; b++) {
            for (int c = 0; c < N; c++) {
                if (a == b || a == c || b == c) { continue; }
                int d = abs(X[c] - X[a]) + abs(Y[c] - Y[a]) + abs(X[c] - X[b]) + abs(Y[c] - Y[b]);
                int v = abs(K[c] - K[b]);
                if (d >= A || v >= B) { ok[a][b][c] = true; }
            }
        }
    }

    int ans = 1;

    vector<int> P(N);

    srand((unsigned)time(NULL));
    random_device seed_gen;
    mt19937 engine(seed_gen());

    while (not time_limit_over()) {
        iota(P.begin(), P.end(), 0);
        shuffle(P.begin(), P.end(), engine);

        int cnt = 1;
        if (ok[P[0]][P[0]][P[1]]) {
            cnt++;
            for (int i = 2; i < N; i++) {
                if (not ok[P[i - 2]][P[i - 1]][P[i]]) { break; }
                cnt++;
            }
        }
        ans = max(ans, cnt);
    }

    cout << ans << '\n';

    return 0;
}
0