結果

問題 No.2366 登校
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2021-06-29 22:29:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,204 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 76,628 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-07-07 21:51:23
合計ジャッジ時間 1,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 9 ms
7,552 KB
testcase_13 AC 9 ms
7,552 KB
testcase_14 AC 8 ms
7,552 KB
testcase_15 AC 9 ms
7,552 KB
testcase_16 AC 9 ms
7,552 KB
testcase_17 AC 9 ms
7,552 KB
testcase_18 AC 9 ms
7,552 KB
testcase_19 AC 8 ms
7,552 KB
testcase_20 AC 9 ms
7,680 KB
testcase_21 AC 8 ms
7,552 KB
testcase_22 WA -
testcase_23 AC 40 ms
20,480 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
20,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//嘘解法が通らないか確認
#include <cassert>
#include <iostream>
#include <vector>
using namespace std;
using ll = long long;
using Vl = vector<ll>;
using VVl = vector<Vl>;
using VVVl = vector<VVl>;
int main()
{
    int N, M, K, T;
    cin >> N >> M >> K >> T;
    assert(1 <= N && N <= 80);
    assert(1 <= M && M <= 80);
    assert(0 <= K && K <= N * M - 2);
    assert(1 <= T && T <= (int)1e9);
    int C[88][88];
    ll D[88][88];
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < M; j++) {
            C[i][j] = D[i][j] = 0;
        }
    }
    for (int i = 0; i < K; i++) {
        int a, b;
        cin >> a >> b;
        assert(1 <= a && a <= N);
        assert(1 <= b && b <= M);
        assert(2 < a + b && a + b < N + M);
        a--;
        b--;
        assert(C[a][b] == 0);
        cin >> C[a][b] >> D[a][b];
    }
    if (T > N + M - 1) {
        cout << "0" << endl;
        return 0;
    }
    VVVl dp((N + M) * 2, VVl(N, Vl(M)));
    ll INF = (ll)1e18;
    for (int i = 0; i <= (N + M) * 2 - 1; i++) {
        for (int j = 0; j < N; j++) {
            for (int k = 0; k < M; k++) {
                dp[i][j][k] = INF;
            }
        }
    }
    for (int i = N + M - 1; i <= (N + M) * 2 - 1; i++) {
        dp[i][0][0] = 0;
    }
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < M; j++) {
            if (i + j == 0) {
                continue;
            }
            for (int k = (N + M) * 2 - 1; k >= 0; k--) {
                //cout << i << ' ' << j << ' ' << k << endl;
                if (k > 0) {
                    if (i > 0) {
                        dp[k][i][j] = min(dp[k][i][j], dp[k - 1][i - 1][j]);
                    }
                    if (j > 0) {
                        dp[k][i][j] = min(dp[k][i][j], dp[k - 1][i][j - 1]);
                    }
                }
                if (C[i][j] > 1) {
                    int kj = max(0, k - C[i][j] + 1);
                    dp[kj][i][j] = min(dp[kj][i][j], dp[k][i][j] + D[i][j]);
                }
            }
        }
    }
    ll ans = INF;
    for (int i = 0; i <= T + N + M - 1; i++) {
        ans = min(ans, dp[i][N - 1][M - 1]);
    }
    cout << ans << endl;
}
0