結果

問題 No.2855 Move on Grid
ユーザー nononnonon
提出日時 2024-08-25 13:59:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 3,000 ms
コード長 1,545 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 207,020 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 13:59:22
合計ジャッジ時間 7,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
6,812 KB
testcase_01 AC 48 ms
6,940 KB
testcase_02 AC 25 ms
6,944 KB
testcase_03 AC 24 ms
6,940 KB
testcase_04 AC 17 ms
6,940 KB
testcase_05 AC 35 ms
6,940 KB
testcase_06 AC 30 ms
6,944 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 27 ms
6,940 KB
testcase_09 AC 12 ms
6,940 KB
testcase_10 AC 82 ms
6,940 KB
testcase_11 AC 84 ms
6,944 KB
testcase_12 AC 87 ms
6,944 KB
testcase_13 AC 84 ms
6,940 KB
testcase_14 AC 84 ms
6,944 KB
testcase_15 AC 85 ms
6,940 KB
testcase_16 AC 86 ms
6,940 KB
testcase_17 AC 87 ms
6,944 KB
testcase_18 AC 82 ms
6,940 KB
testcase_19 AC 83 ms
6,944 KB
testcase_20 AC 155 ms
6,940 KB
testcase_21 AC 145 ms
6,940 KB
testcase_22 AC 154 ms
6,940 KB
testcase_23 AC 152 ms
6,944 KB
testcase_24 AC 177 ms
6,944 KB
testcase_25 AC 143 ms
6,940 KB
testcase_26 AC 150 ms
6,944 KB
testcase_27 AC 147 ms
6,944 KB
testcase_28 AC 148 ms
6,940 KB
testcase_29 AC 148 ms
6,940 KB
testcase_30 AC 145 ms
6,940 KB
testcase_31 AC 144 ms
6,944 KB
testcase_32 AC 143 ms
6,944 KB
testcase_33 AC 140 ms
6,944 KB
testcase_34 AC 145 ms
6,940 KB
testcase_35 AC 137 ms
6,940 KB
testcase_36 AC 116 ms
6,944 KB
testcase_37 AC 145 ms
6,944 KB
testcase_38 AC 143 ms
6,944 KB
testcase_39 AC 153 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int H,W,K,A[303][303];
int dist[303][303],B[303][303];
int dr[4]={1,0,-1,0},dc[4]={0,1,0,-1};
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin>>H>>W>>K;
    for(int i=1;i<=H;i++)for(int j=1;j<=W;j++)cin>>A[i][j];
    int L=0,R=int(1e9)+1;
    while(R-L>1)
    {
        int mid=(L+R)/2;
        for(int i=1;i<=H;i++)for(int j=1;j<=W;j++)
        {
            B[i][j]=A[i][j]<mid;
            dist[i][j]=1<<30;
        }
        dist[1][1]=B[1][1];
        deque<pair<int,int>>q;
        q.push_back(make_pair(1,1));
        while(q.size())
        {
            auto[r,c]=q.front();
            q.pop_front();
            for(int d=0;d<4;d++)
            {
                int tr=r+dr[d],tc=c+dc[d];
                if(1<=tr&&tr<=H&&1<=tc&&tc<=W)
                {
                    if(B[tr][tc]==1)
                    {
                        if(dist[tr][tc]>dist[r][c]+1)
                        {
                            dist[tr][tc]=dist[r][c]+1;
                            q.push_back(make_pair(tr,tc));
                        }
                    }
                    else
                    {
                        if(dist[tr][tc]>dist[r][c])
                        {
                            dist[tr][tc]=dist[r][c];
                            q.push_front(make_pair(tr,tc));
                        }
                    }
                }
            }
        }
        if(dist[H][W]<=K)L=mid;
        else R=mid;
    }
    cout<<L<<endl;
}
0