結果

問題 No.1668 Grayscale
ユーザー 👑 NachiaNachia
提出日時 2021-09-03 21:44:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 533 ms / 4,000 ms
コード長 977 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 114,528 KB
実行使用メモリ 65,836 KB
最終ジャッジ日時 2024-05-09 02:53:43
合計ジャッジ時間 5,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 219 ms
65,836 KB
testcase_07 AC 222 ms
65,760 KB
testcase_08 AC 63 ms
7,168 KB
testcase_09 AC 533 ms
58,096 KB
testcase_10 AC 137 ms
21,248 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 18 ms
6,528 KB
testcase_14 AC 55 ms
13,044 KB
testcase_15 AC 33 ms
7,808 KB
testcase_16 AC 23 ms
6,016 KB
testcase_17 AC 12 ms
5,376 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 <iostream>
#include <vector>
#include <algorithm>
#include <atcoder/string>
#include <atcoder/segtree>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)

int H,W,N;
vector<vector<int>> G;
vector<vector<int>> E;
vector<int> D;

int main(){
  cin >> H >> W >> N;
  G.assign(H,vector<int>(W));
  rep(y,H) rep(x,W){ cin >> G[y][x]; G[y][x]--; }
  E.resize(N);
  rep(y,H) rep(x,W-1) if(G[y][x] != G[y][x+1]) E[min(G[y][x],G[y][x+1])].push_back(max(G[y][x],G[y][x+1]));
  rep(y,H-1) rep(x,W) if(G[y][x] != G[y+1][x]) E[min(G[y][x],G[y+1][x])].push_back(max(G[y][x],G[y+1][x]));
  D.assign(N+1,1);
  rep(i,N){
    for(int e : E[i]) D[e] = max(D[e], D[i] + 1);
    D[i+1] = max(D[i+1], D[i]);
  }
  cout << D.back() << endl;
  return 0;
}

struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_instance;




0