結果

問題 No.1668 Grayscale
ユーザー HaaHaa
提出日時 2021-09-03 23:16:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 899 ms / 4,000 ms
コード長 1,432 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 181,636 KB
実行使用メモリ 73,628 KB
最終ジャッジ日時 2024-05-09 07:03:51
合計ジャッジ時間 5,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 416 ms
73,628 KB
testcase_07 AC 413 ms
73,600 KB
testcase_08 AC 199 ms
50,940 KB
testcase_09 AC 899 ms
72,392 KB
testcase_10 AC 355 ms
41,600 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 29 ms
7,424 KB
testcase_14 AC 103 ms
15,872 KB
testcase_15 AC 62 ms
10,496 KB
testcase_16 AC 43 ms
8,448 KB
testcase_17 AC 19 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0