結果
問題 | No.2731 Two Colors |
ユーザー | maeshun |
提出日時 | 2024-04-19 22:21:15 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 471 ms / 3,000 ms |
コード長 | 2,614 bytes |
コンパイル時間 | 4,870 ms |
コンパイル使用メモリ | 269,840 KB |
実行使用メモリ | 16,024 KB |
最終ジャッジ日時 | 2024-10-11 15:49:45 |
合計ジャッジ時間 | 12,003 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 33 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i, n) for(int i=0;i<(n);++i) #define rep1(i, n) for(int i=1;i<=(n);i++) #define ll long long using mint = modint998244353; using P = pair<ll,ll>; using lb = long double; using T = tuple<ll, ll, ll>; #ifdef LOCAL # include <debug_print.hpp> # define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__) #else # define dbg(...) (static_cast<void>(0)) #endif int main() { int h, w; cin >> h >> w; vector<vector<int>> a(h, vector<int>(w)); rep(i,h)rep(j,w) cin >> a[i][j]; vector<vector<int>> used(h, vector<int>(w, -1)); priority_queue<T, vector<T>, greater<T>> pq1, pq0; vector<int> di = {0, 1, 0, -1}; vector<int> dj = {1, 0, -1, 0}; auto add = [&](int x, int y, int t) { rep(d,4) { int ni = x + di[d]; int nj = y + dj[d]; if(ni<0 || ni>=h || nj<0 || nj>=w) continue; if(used[ni][nj]!=-1) continue; if(t==0) pq0.emplace(a[ni][nj], ni, nj); else pq1.emplace(a[ni][nj], ni, nj); } }; add(0, 0, 1); add(h-1, w-1, 0); used[0][0] = 1; used[h-1][w-1] = 0; int ans = 0; while(!pq0.empty() && !pq1.empty()) { if(ans%2==0) { while(!pq1.empty()) { auto [val, x,y] = pq1.top();pq1.pop(); if(used[x][y]!=-1) continue; used[x][y] = 1; add(x, y, 1); ans++; dbg(x,y,val); rep(d,4) { int ni = x + di[d]; int nj = y + dj[d]; if(ni<0 || ni>=h || nj<0 || nj>=w) continue; if(used[ni][nj]==0) { cout << ans << endl; exit(0); } } break; } } else{ while(!pq0.empty()) { auto [val, x,y] = pq0.top();pq0.pop(); if(used[x][y]!=-1) continue; used[x][y] = 0; add(x, y, 0); ans++; dbg(x,y,val); rep(d,4) { int ni = x + di[d]; int nj = y + dj[d]; if(ni<0 || ni>=h || nj<0 || nj>=w) continue; if(used[ni][nj]==1) { cout << ans << endl; exit(0); } } break; } } } cout << ans << endl; return 0; }