結果

問題 No.1668 Grayscale
ユーザー 沙耶花沙耶花
提出日時 2021-09-03 22:22:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,171 bytes
コンパイル時間 4,650 ms
コンパイル使用メモリ 267,980 KB
実行使用メモリ 245,696 KB
最終ジャッジ日時 2024-05-09 04:47:28
合計ジャッジ時間 8,351 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
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 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 448 ms
245,696 KB
testcase_08 AC 378 ms
233,660 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	
	int H,W,N;
	cin>>H>>W>>N;
	
	vector A(H,vector<int>(W));
	rep(i,H){
		rep(j,W){
			scanf("%d",&A[i][j]);
		}
	}
	
	vector dx = {0,0,1,-1},dy = {1,-1,0,0};
	
	scc_graph S(H*W);
	
	rep(i,H){
		rep(j,W){
			rep(k,4){
				int ii = i+dx[k],jj = j+dy[k];
				if(ii<0||ii>=H||jj<0||jj>=W)continue;
				if(A[i][j] <= A[ii][jj]){
					S.add_edge(i*W+j,ii*W+jj);
				}
			}
		}
	}
	
	auto s = S.scc();
	vector<vector<int>> pos(H,vector<int>(W));
	rep(i,s.size()){
		rep(j,s[i].size()){
			pos[s[i][j]/W][s[i][j]%W] = i;
		}
	}
	
	vector dp(s.size(),1);
	
	rep(i,s.size()){
		rep(j,s[i].size()){
			int y = s[i][j]/W,x = s[i][j]%W;
			rep(k,4){
				int yy = y+dx[k],xx = x+dy[k];
				if(yy<0||yy>=H||xx<0||xx>=W)continue;
				if(pos[yy][xx]<=pos[y][x])continue;
				dp[pos[yy][xx]] = max(dp[pos[yy][xx]],dp[pos[y][x]]+1);
			}
		}
	}
	
	int ans = 0;
	rep(i,dp.size()){
	//	cout<<dp[i]<<endl;
		ans = max(ans,dp[i]);
	}
	
	cout<<ans<<endl;
	
	return 0;
}
0