結果

問題 No.2731 Two Colors
ユーザー Spica08Spica08
提出日時 2024-05-11 19:14:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,598 ms / 3,000 ms
コード長 1,526 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 220,764 KB
実行使用メモリ 58,240 KB
最終ジャッジ日時 2024-05-11 19:15:17
合計ジャッジ時間 17,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,561 ms
58,240 KB
testcase_01 AC 1,598 ms
58,240 KB
testcase_02 AC 1,528 ms
58,240 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 28 ms
6,944 KB
testcase_05 AC 21 ms
6,940 KB
testcase_06 AC 84 ms
7,680 KB
testcase_07 AC 83 ms
6,948 KB
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 344 ms
15,232 KB
testcase_10 AC 8 ms
6,944 KB
testcase_11 AC 407 ms
22,912 KB
testcase_12 AC 307 ms
14,848 KB
testcase_13 AC 344 ms
19,712 KB
testcase_14 AC 162 ms
9,472 KB
testcase_15 AC 15 ms
6,944 KB
testcase_16 AC 157 ms
11,264 KB
testcase_17 AC 209 ms
12,672 KB
testcase_18 AC 42 ms
6,940 KB
testcase_19 AC 165 ms
11,776 KB
testcase_20 AC 191 ms
10,240 KB
testcase_21 AC 39 ms
6,944 KB
testcase_22 AC 386 ms
18,560 KB
testcase_23 AC 89 ms
7,936 KB
testcase_24 AC 45 ms
6,940 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 270 ms
14,080 KB
testcase_27 AC 334 ms
17,152 KB
testcase_28 AC 245 ms
14,848 KB
testcase_29 AC 90 ms
7,424 KB
testcase_30 AC 126 ms
9,088 KB
testcase_31 AC 93 ms
8,448 KB
testcase_32 AC 487 ms
23,936 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 1 ms
6,948 KB
testcase_35 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using Matrix = vector<vector<ll>>;
const int inf = 1000000000;
const ll INF = 1000000000000000000;
const ll mod = 998244353;
const ull mod_hash = (1UL << 61) - 1;
const vector<int> dx = {0, 1, 0, -1, 1, 1, -1, -1};
const vector<int> dy = {1, 0, -1, 0, 1, -1, 1, -1};

int main(){
  int H,W;cin>>H>>W;
  vector<vector<ll>> G(H,vector<ll>(W));
  for (int i = 0; i < H; i++) for (int j = 0; j < W; j++) cin>>G[i][j];
  set<ll> seen;
  set<pair<ll,ll>> zero, one;
  one.insert({G[0][1], 1});
  one.insert({G[1][0], W});
  zero.insert({G[H-1][W-2], (H-1)*W + W - 2});
  zero.insert({G[H-2][W-1], (H-2)*W + W - 1});
  seen.insert(0);
  seen.insert((H - 1) * W + W - 1);
  int turn = 1;
  int ans = 0;
  while(true){
    pair<ll,ll> ne;
    if(turn&1){
      ne = *one.begin();
      one.erase(one.begin());
    }else{
      ne = *zero.begin();
      zero.erase(zero.begin());
    }
    ans++;
    if(turn&1){
      if(zero.count(ne))break;
    }else{
      if(one.count(ne))break;
    }
    seen.insert(ne.second);
    int x = ne.second/W;
    int y = ne.second%W;
    for (int d = 0; d < 4; d++) {
      int xx = x + dx[d];
      int yy = y + dy[d];
      if(xx< 0 || xx >= H || yy < 0 || yy >= W)continue;
      if(seen.count(xx*W+yy))continue;
      if(turn&1){
        one.insert({G[xx][yy], xx*W+yy});
      }else{
        zero.insert({G[xx][yy], xx*W+yy});
      }
    }
    turn ^= 1;
  }
  cout << ans << endl;
  return 0;
}
0