結果

問題 No.1668 Grayscale
ユーザー SSRSSSRS
提出日時 2021-09-03 21:45:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,480 ms / 4,000 ms
コード長 1,020 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 173,472 KB
実行使用メモリ 124,360 KB
最終ジャッジ日時 2024-05-09 02:54:57
合計ジャッジ時間 6,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 518 ms
124,360 KB
testcase_07 AC 521 ms
124,312 KB
testcase_08 AC 177 ms
15,244 KB
testcase_09 AC 1,480 ms
120,576 KB
testcase_10 AC 377 ms
19,712 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 46 ms
10,368 KB
testcase_14 AC 195 ms
23,680 KB
testcase_15 AC 82 ms
10,112 KB
testcase_16 AC 51 ms
6,912 KB
testcase_17 AC 29 ms
7,552 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
vector<int> dx = {1, 0, -1, 0};
vector<int> dy = {0, 1, 0, -1};
int main(){
  int H, W, N;
  cin >> H >> W >> N;
  vector<vector<int>> C(H, vector<int>(W));
  for (int i = 0; i < H; i++){
    for (int j = 0; j < W; j++){
      cin >> C[i][j];
      C[i][j]--;
    }
  }
  vector<vector<int>> px(N), py(N);
  vector<int> cnt(N);
  for (int i = 0; i < H; i++){
    for (int j = 0; j < W; j++){
      px[C[i][j]].push_back(i);
      py[C[i][j]].push_back(j);
      cnt[C[i][j]]++;
    }
  }
  vector<int> dp(N);
  int ans = 1;
  for (int i = 0; i < N; i++){
    dp[i] = ans;
    for (int j = 0; j < cnt[i]; j++){
      int x = px[i][j];
      int y = py[i][j];
      for (int k = 0; k < 4; k++){
        int x2 = x + dx[k];
        int y2 = y + dy[k];
        if (0 <= x2 && x2 < H && 0 <= y2 && y2 < W){
          if (C[x2][y2] < i){
            dp[i] = max(dp[i], dp[C[x2][y2]] + 1);
          }
        }
      }
    }
    ans = max(ans, dp[i]);
  }
  cout << ans << endl;
}
0