結果

問題 No.655 E869120 and Good Triangles
ユーザー vwxyzvwxyz
提出日時 2024-05-03 15:54:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,091 bytes
コンパイル時間 1,288 ms
コンパイル使用メモリ 104,204 KB
実行使用メモリ 231,016 KB
最終ジャッジ日時 2024-05-03 15:55:00
合計ジャッジ時間 12,782 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 453 ms
230,912 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <deque>

using namespace std;

int main() {
    int N, K, P;
    cin >> N >> K >> P;

    int inf = 1 << 30;
    vector<vector<int>> A(N, vector<int>(N, inf));
    deque<pair<int, int>> queue;

    for (int i = 0; i < K; ++i) {
        int x, y;
        cin >> x >> y;
        x -= 1;
        y -= 1;
        queue.push_back({x, y});
        A[x][y] = 0;
    }

    while (!queue.empty()) {
        int x = queue.front().first;
        int y = queue.front().second;
        queue.pop_front();

        if (0 <= y - 1 && y - 1 <= x - 1 && x-1<N && A[x][y] + 1 < A[x - 1][y - 1]) {
            A[x - 1][y - 1] = A[x][y] + 1;
            queue.push_back({x - 1, y - 1});
        }
        if (0 <= y && y <= x - 1 && x-1<N && A[x][y] + 1 < A[x - 1][y]) {
            A[x - 1][y] = A[x][y] + 1;
            queue.push_back({x - 1, y});
        }
        if (0 <= y - 1 && y - 1 <= x && x<N && A[x][y] + 1 < A[x][y - 1]) {
            A[x][y - 1] = A[x][y] + 1;
            queue.push_back({x, y - 1});
        }
        if (0 <= y + 1 && y + 1 <= x && x<N && A[x][y] + 1 < A[x][y + 1]) {
            A[x][y + 1] = A[x][y] + 1;
            queue.push_back({x, y + 1});
        }
        if (0 <= y && y <= x + 1 && x+1<N && A[x][y] + 1 < A[x + 1][y]) {
            A[x + 1][y] = A[x][y] + 1;
            queue.push_back({x + 1, y});
        }
        if (0 <= y + 1 && y + 1 <= x + 1 && x+1<N && A[x][y] + 1 < A[x + 1][y + 1]) {
            A[x + 1][y + 1] = A[x][y] + 1;
            queue.push_back({x + 1, y + 1});
        }
    }

    vector<vector<int>> AL(N, vector<int>(N));
    vector<vector<int>> AR(N, vector<int>(N));
    for (int i = 0; i < N; ++i) {
        for (int j = 0; j <= i; ++j) {
            AL[i][j] = A[i][j] + (i > 0 ? AL[i - 1][j] : 0);
        }
    }
    for (int i = 0; i < N; ++i) {
        for (int j = 0; j <= i; ++j) {
            AR[i][j] = A[i][j] + (j > 0 && i>0 ? AR[i - 1][j - 1] : 0);
        }
    }

    for (int i = 0; i < N; ++i) {
        A[i].insert(A[i].begin(), 0);
        for (int j = 1; j <= i + 1; ++j) {
            A[i][j] += A[i][j - 1];
        }
    }

    int ans = 0;
    vector<pair<int, int>> dp(N + 1, {0, 0});
    for (int i = 0; i < N; ++i) {
        vector<pair<int, int>> prev = dp;
        dp = vector<pair<int, int>>(i + 2, {0, 0});
        for (int j = 0; j <= i; ++j) {
            int ii = prev[j].first;
            int s = prev[j].second;
            while (ii < N && s < P) {
                s += A[ii][j - i + ii + 1] - A[ii][j];
                ii++;
            }
            prev[j] = {ii, s};
            if (i != N - 1) {
                dp[j] = max(dp[j], {ii, s - (AR[ii - 1][j - i + ii - 1] - (i > 0 && j > 0 ? AR[i - 1][j - 1] : 0))});
                dp[j + 1] = max(dp[j + 1], {ii, s - (AL[ii - 1][j] - (i > 0 && i != j ? AL[i - 1][j] : 0))});
            }
        }
        for (int j = 0; j <= i; ++j) {
            if (prev[j].second >= P) {
                ans += N - prev[j].first + 1;
            }
        }
    }

    cout << ans << endl;

    return 0;
}
0