結果
問題 | No.1668 Grayscale |
ユーザー | fumofumofuni |
提出日時 | 2021-09-03 23:37:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,910 bytes |
コンパイル時間 | 2,400 ms |
コンパイル使用メモリ | 212,616 KB |
実行使用メモリ | 73,648 KB |
最終ジャッジ日時 | 2024-05-09 07:45:19 |
合計ジャッジ時間 | 6,206 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 434 ms
73,648 KB |
testcase_08 | AC | 161 ms
11,008 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 | WA | - |
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 |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(ll i=0;i<n;i++) #define repl(i,l,r) for(ll i=(l);i<(r);i++) #define per(i,n) for(ll i=(n)-1;i>=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue<x,vector<x>,greater<x>> #define all(x) (x).begin(),(x).end() #define CST(x) cout<<fixed<<setprecision(x) #define rev(x) reverse(x); using ll=long long; using vl=vector<ll>; using vvl=vector<vector<ll>>; using pl=pair<ll,ll>; using vpl=vector<pl>; using vvpl=vector<vpl>; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; const ll dy[8]={1,0,-1,0,1,1,-1,-1}; const ll dx[8]={0,1,0,-1,1,-1,1,-1}; template <typename T> inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); } template <typename T> inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); } vl topsort(vvl &g){ ll n=g.size(); vl ans,ind(n); rep(i,n)for(auto e:g[i])ind[e]++; queue<ll> que; rep(i,n)if(!ind[i])que.push(i); while(!que.empty()){ ll v=que.front();que.pop(); ans.pb(v); for(auto nv:g[v]){ ind[nv]--;if(!ind[nv])que.push(nv); } } return ans; } int main(){ ll h,w,n;cin >> h >> w >> n; vvl g(n); vvl gr(h,vl(w)); rep(i,h)rep(j,w){cin >> gr[i][j],gr[i][j]--;} rep(i,h){ rep(j,w){ rep(k,4){ ll nx=i+dx[k],ny=j+dy[k]; if(nx<0||ny<0||nx>=h||ny>=w)continue; if(gr[i][j]<gr[nx][ny])g[gr[i][j]].push_back(gr[nx][ny]); } } } vl dp(n); rep(i,n){ dp[i]++; for(auto p:g[i]){ chmax(dp[p],dp[i]); } } cout << dp[n-1] << endl; /*auto ts=topsort(g); vl dp(n); for(auto p:ts){ for(auto to:g[p]){ chmax(dp[to],dp[p]+1); } } cout << *max_element(all(dp))+1 << endl;*/ }