結果

問題 No.2855 Move on Grid
ユーザー dyktr_06dyktr_06
提出日時 2023-10-27 01:28:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,139 ms / 3,000 ms
コード長 1,922 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 217,444 KB
実行使用メモリ 14,900 KB
最終ジャッジ日時 2024-08-25 13:03:08
合計ジャッジ時間 34,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
6,816 KB
testcase_01 AC 296 ms
6,948 KB
testcase_02 AC 191 ms
6,940 KB
testcase_03 AC 130 ms
6,944 KB
testcase_04 AC 88 ms
6,940 KB
testcase_05 AC 194 ms
6,940 KB
testcase_06 AC 186 ms
6,940 KB
testcase_07 AC 18 ms
6,944 KB
testcase_08 AC 153 ms
6,944 KB
testcase_09 AC 68 ms
6,940 KB
testcase_10 AC 770 ms
14,380 KB
testcase_11 AC 852 ms
14,268 KB
testcase_12 AC 818 ms
14,264 KB
testcase_13 AC 769 ms
14,384 KB
testcase_14 AC 790 ms
14,268 KB
testcase_15 AC 794 ms
14,272 KB
testcase_16 AC 765 ms
14,260 KB
testcase_17 AC 803 ms
14,264 KB
testcase_18 AC 809 ms
14,376 KB
testcase_19 AC 798 ms
14,260 KB
testcase_20 AC 1,000 ms
14,260 KB
testcase_21 AC 1,050 ms
14,512 KB
testcase_22 AC 1,029 ms
14,256 KB
testcase_23 AC 1,009 ms
14,384 KB
testcase_24 AC 956 ms
14,284 KB
testcase_25 AC 1,076 ms
14,512 KB
testcase_26 AC 1,012 ms
14,264 KB
testcase_27 AC 1,066 ms
14,516 KB
testcase_28 AC 1,027 ms
14,256 KB
testcase_29 AC 1,019 ms
14,388 KB
testcase_30 AC 1,101 ms
14,524 KB
testcase_31 AC 1,116 ms
14,516 KB
testcase_32 AC 1,139 ms
14,776 KB
testcase_33 AC 1,097 ms
14,644 KB
testcase_34 AC 1,094 ms
14,512 KB
testcase_35 AC 1,118 ms
14,900 KB
testcase_36 AC 952 ms
14,772 KB
testcase_37 AC 1,061 ms
14,640 KB
testcase_38 AC 1,102 ms
14,648 KB
testcase_39 AC 1,080 ms
14,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

template <typename T>
vector<long long> dijkstra(const vector<vector<array<long long, 2>>> &G, T x){
    const long long INF = 0x1fffffffffffffff;
    vector<long long> cost((int) G.size(), INF);
    using P = pair<long long, long long>;
    priority_queue<P, vector<P>, greater<>> q;
    cost[x] = 0;
    q.emplace(0, x);
    
    while(q.size()){
        auto [c, at] = q.top();
        q.pop();
        if(c > cost[at]) continue;
        for(auto& [to, t] : G[at]){
            if(cost[to] > c + t){
                cost[to] = c + t;
                q.emplace(cost[to], to);
            }
        }
    }
    return cost;
}

vector<int> dx = {0, 1, 0, -1};
vector<int> dy = {1, 0, -1, 0};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n, m, k; cin >> n >> m >> k;
    vector<vector<int>> a(n, vector<int>(m));
    for(int i = 0; i < n; i++){
        for(int j = 0; j < m; j++){
            cin >> a[i][j];
        }
    }

    int ok = 1, ng = 1000000000 + 1;
    while(abs(ok - ng) > 1){
        int mid = (ok + ng) / 2;

        vector<vector<array<long long, 2>>> G(n * m + 1);
        for(int i = 0; i < n; i++){
            for(int j = 0; j < m; j++){
                for(int dir = 0; dir < 4; dir++){
                    int nx = i + dx[dir], ny = j + dy[dir];
                    if(0 <= nx && nx < n && 0 <= ny && ny < m){
                        if(a[nx][ny] < mid){
                            G[j * n + i].push_back({ny * n + nx, 1});
                        }else{
                            G[j * n + i].push_back({ny * n + nx, 0});
                        }
                    }
                }
            }
        }

        vector<long long> cost = dijkstra(G, 0);

        if(cost[n * m - 1] + (a[0][0] < mid) <= k){
            ok = mid;
        }else{
            ng = mid;
        }
    }
    cout << ok << endl;
}
0