結果
| 問題 |
No.1668 Grayscale
|
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2021-09-03 23:01:09 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,194 bytes |
| コンパイル時間 | 4,111 ms |
| コンパイル使用メモリ | 253,716 KB |
| 最終ジャッジ日時 | 2025-01-24 06:51:05 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 WA * 14 |
ソースコード
#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int h, w, n;
cin >> h >> w >> n;
VVI c(h, VI(w));
rep(i, h) rep(j, w) cin >> c[i][j], c[i][j]--;
VVI to(n);
rep(i, h - 1) rep(j, w) {
int x = c[i][j], y = c[i + 1][j];
if (x < y) to[x].push_back(y);
else if (x > y) to[y].push_back(x);
}
rep(i, h) rep(j, w - 1) {
int x = c[i][j], y = c[i][j + 1];
if (x < y) to[x].push_back(y);
else if (x > y) to[y].push_back(x);
}
VI dp(n);
rep(i, n) for(int j: to[i]) chmax(dp[j], dp[i] + 1);
int ans = *max_element(all(dp)) + 1;
cout << ans << endl;
}
Kude