結果

問題 No.2366 登校
ユーザー Rainer Evan RuslyRainer Evan Rusly
提出日時 2024-05-02 03:09:20
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,602 bytes
コンパイル時間 5,941 ms
コンパイル使用メモリ 276,656 KB
実行使用メモリ 14,588 KB
最終ジャッジ日時 2024-05-02 03:09:32
合計ジャッジ時間 11,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
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 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
typedef int ll;
const ll INF = 1e9;
const ll MOD = 1e9 + 7;
const ll MAXN = 7e3 + 5;
const ll LOG = 31;
#define vll vector <ll>
#define pll pair <ll, ll>
#define fi first
#define se second
#define endl '\n'

ll n, m, k, t;
pll a [MAXN], b [MAXN];
ll dp [MAXN][350];

void solve(){
    cin >> n >> m >> k >> t;
    for(ll i = 1; i <= k; i++){
        cin >> a[i].fi >> a[i].se >> b[i].fi >> b[i].se;
    }
    ll tt = n+m-2;
    t = min(t, tt);
    a[0] = {1, 1};
    a[k+1] = {n, m};
    for(ll i = 0; i <= k+1; i++){
        for(ll j = 0; j <= 2*tt; j++){
            dp[i][j] = INF;
            if(i == 0){
                if(j < tt) dp[i][j] = INF;
            }
            for(ll u = 0; u < i; u++){
                ll dis = abs(a[u].fi - a[i].fi) + abs(a[u].se - a[i].se);
                // cout << i << " " << u << " << " << dis << endl;
                if(dis <= j) dp[i][j] = min(dp[i][j], dp[u][j-dis]);
            }
        }
        for(ll j = 2*tt; j >= 0; j--){
            if(i == 0 || i == k+1) break;
            ll cnt = j+b[i].fi-1;
            dp[i][j] = min(dp[i][j], dp[i][min(2*tt, cnt)] + b[i].se);
        }
        // for(ll j = 0; j <= 2*tt; j++){
        //     cout << dp[i][j] << " ";
        // }cout << endl;
    }
    ll ans = dp[k+1][tt+t];
    if(ans == INF) cout << -1 << endl;
    else cout << ans << endl;
}

int main(){
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    // ll t; cin >> t;
    // while(t--){
        solve();
    // }
}
0