結果
問題 | No.1668 Grayscale |
ユーザー | Haa |
提出日時 | 2021-09-03 23:16:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 864 ms / 4,000 ms |
コード長 | 1,432 bytes |
コンパイル時間 | 1,821 ms |
コンパイル使用メモリ | 182,696 KB |
実行使用メモリ | 73,608 KB |
最終ジャッジ日時 | 2024-12-15 17:45:54 |
合計ジャッジ時間 | 5,447 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 416 ms
73,588 KB |
testcase_07 | AC | 384 ms
73,608 KB |
testcase_08 | AC | 184 ms
50,888 KB |
testcase_09 | AC | 864 ms
72,412 KB |
testcase_10 | AC | 337 ms
41,728 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 3 ms
6,820 KB |
testcase_13 | AC | 27 ms
7,424 KB |
testcase_14 | AC | 90 ms
15,848 KB |
testcase_15 | AC | 60 ms
10,496 KB |
testcase_16 | AC | 43 ms
8,448 KB |
testcase_17 | AC | 20 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 3 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll,ll> P; typedef vector<ll> VI; typedef vector<VI> VVI; #define REP(i,n) for(ll i=0;i<(n);i++) #define ALL(v) v.begin(),v.end() template<typename T> bool chmax(T &x, const T &y) {return (x<y)?(x=y,true):false;}; template<typename T> bool chmin(T &x, const T &y) {return (x>y)?(x=y,true):false;}; constexpr ll MOD=998244353; constexpr ll INF=2e18; int dx[4]={1,0,-1,0}, dy[4]={0,1,0,-1}; int main(){ 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]--; vector<vector<P>> p(n,vector<P>(0)); REP(i,h)REP(j,w){ p[c[i][j]].emplace_back(P{i,j}); } VVI f(h,VI(w,0)); queue<P> q; int ans=0; REP(i,n){ bool no=0; for(auto j:p[i]){ REP(k,4){ int tx=j.first+dx[k], ty=j.second+dy[k]; if(tx<0||tx>=h||ty<0||ty>=w) continue; if(f[tx][ty]){ no=1; break; } } } if(no){ while(!q.empty()){ f[q.front().first][q.front().second]=0; q.pop(); } ans++; } for(auto j:p[i]){ f[j.first][j.second]=1; q.push(j); } } if(!q.empty()) ans++; cout << ans << endl; return 0; }