結果
問題 | No.2731 Two Colors |
ユーザー | butsurizuki |
提出日時 | 2024-04-19 21:32:23 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 203 ms / 3,000 ms |
コード長 | 1,337 bytes |
コンパイル時間 | 2,944 ms |
コンパイル使用メモリ | 260,168 KB |
実行使用メモリ | 15,104 KB |
最終ジャッジ日時 | 2024-10-11 14:10:25 |
合計ジャッジ時間 | 6,945 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 33 |
ソースコード
#include<bits/stdc++.h> using namespace std; using pi=pair<int,int>; using pip=pair<int,pi>; int dx4[4]={1,-1,0,0}; int dy4[4]={0,0,1,-1}; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int h,w; cin >> h >> w; vector<vector<int>> a(h,vector<int>(w)); for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ cin >> a[i][j]; } } vector<vector<int>> col(h,vector<int>(w,-1)); vector<vector<int>> fl(h,vector<int>(w,0)); col[0][0]=1; fl[0][0]=3; col[h-1][w-1]=0; fl[h-1][w-1]=3; vector<priority_queue<pip,vector<pip>,greater<pip>>> pq(2); pq[1].push({a[0][1],{0,1}}); fl[0][1]|=2; pq[1].push({a[1][0],{1,0}}); fl[1][0]|=2; pq[0].push({a[h-1][w-2],{h-1,w-2}}); fl[h-1][w-2]|=1; pq[0].push({a[h-2][w-1],{h-2,w-1}}); fl[h-2][w-1]|=1; for(int att=1;;att++){ pip od=pq[att%2].top(); pq[att%2].pop(); int x=od.second.first; int y=od.second.second; col[x][y]=(att%2); for(int k=0;k<4;k++){ int nx=x+dx4[k]; int ny=y+dy4[k]; if(!(0<=nx && nx<h)){continue;} if(!(0<=ny && ny<w)){continue;} if(col[nx][ny]==((att%2)^1)){ cout << att << "\n"; return 0; } if((fl[nx][ny]&(1<<(att%2)))==0){ fl[nx][ny]|=(1<<(att%2)); pq[att%2].push({a[nx][ny],{nx,ny}}); } } } return 0; }