結果

問題 No.2731 Two Colors
ユーザー CaiiiiiiiiCaiiiiiiii
提出日時 2024-04-19 21:46:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 3,000 ms
コード長 1,134 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 209,036 KB
実行使用メモリ 15,892 KB
最終ジャッジ日時 2024-10-11 14:40:11
合計ジャッジ時間 6,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
11,596 KB
testcase_01 AC 275 ms
11,520 KB
testcase_02 AC 275 ms
11,648 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 12 ms
6,016 KB
testcase_05 AC 10 ms
6,272 KB
testcase_06 AC 30 ms
6,472 KB
testcase_07 AC 33 ms
6,984 KB
testcase_08 AC 7 ms
5,248 KB
testcase_09 AC 109 ms
11,660 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 122 ms
15,892 KB
testcase_12 AC 107 ms
11,796 KB
testcase_13 AC 102 ms
13,920 KB
testcase_14 AC 50 ms
10,872 KB
testcase_15 AC 6 ms
5,248 KB
testcase_16 AC 49 ms
8,504 KB
testcase_17 AC 67 ms
8,772 KB
testcase_18 AC 14 ms
5,248 KB
testcase_19 AC 52 ms
10,964 KB
testcase_20 AC 69 ms
9,948 KB
testcase_21 AC 18 ms
10,112 KB
testcase_22 AC 116 ms
11,188 KB
testcase_23 AC 32 ms
9,152 KB
testcase_24 AC 18 ms
7,656 KB
testcase_25 AC 6 ms
7,552 KB
testcase_26 AC 91 ms
9,764 KB
testcase_27 AC 115 ms
13,132 KB
testcase_28 AC 77 ms
9,604 KB
testcase_29 AC 25 ms
5,452 KB
testcase_30 AC 44 ms
9,232 KB
testcase_31 AC 30 ms
8,636 KB
testcase_32 AC 143 ms
12,004 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

typedef long long LL;

const int N = 1e3 + 7;
const int MOD = 998244353;

const int X[] = {1, -1, 0, 0};
const int Y[] = {0, 0, 1, -1};

int n, m, ans;
int a[N][N], c[N][N];

template<typename T> void solve(T &q, int co) {
  auto [v, x, y] = q.top();
  q.pop();
  if(c[x][y] == co) {
    solve(q, co);
    return ;
  }
  c[x][y] = co;
  for(int i = 0; i < 4; ++i) {
    int u = x + X[i], v = y + Y[i];
    if(u >= 1 && u <= n && v >= 1 && v <= m) {
      if(!c[u][v])
	q.push({a[u][v], u, v});
      else if(c[u][v] != co) {
	printf("%d\n", ans);
	exit(0);
      }
    }
  }
}

int main() {

  scanf("%d%d", &n, &m);
  for(int i = 1; i <= n; ++i)
    for(int j = 1; j <= m; ++j)
      scanf("%d", &a[i][j]);

  c[1][1] = 1, c[n][m] = 2;
  std::priority_queue<std::tuple<int, int, int>,
		      std::vector<std::tuple<int, int, int>>,
		      std::greater<std::tuple<int, int, int>>> p, q;
  p.push({a[1][2], 1, 2});
  p.push({a[2][1], 2, 1});
  q.push({a[n - 1][m], n - 1, m});
  q.push({a[n][m - 1], n, m - 1});

  while(true) {
    ++ans;
    solve(p, 1);
    ++ans;
    solve(q, 2);
  }
  
  return 0;

}
0