結果

問題 No.1668 Grayscale
ユーザー rianoriano
提出日時 2021-06-14 21:42:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,660 ms / 4,000 ms
コード長 1,324 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 178,980 KB
実行使用メモリ 90,876 KB
最終ジャッジ日時 2024-05-09 00:35:27
合計ジャッジ時間 8,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
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 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 939 ms
90,860 KB
testcase_07 AC 794 ms
90,876 KB
testcase_08 AC 154 ms
11,108 KB
testcase_09 AC 1,660 ms
89,472 KB
testcase_10 AC 704 ms
44,760 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 54 ms
8,680 KB
testcase_14 AC 217 ms
21,000 KB
testcase_15 AC 124 ms
15,176 KB
testcase_16 AC 82 ms
9,320 KB
testcase_17 AC 37 ms
7,416 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define Pr pair<ll,ll>
#define Tp tuple<ll,ll,ll>
using Graph = vector<vector<Pr>>;

ll mod = 998244353;

int main() {
    //FILE *in = freopen("grayscale/in/in22.txt", "r", stdin);
    //FILE *out = freopen("grayscale/out/in22.txt", "w", stdout);
    ll H,W,N; cin >> H >> W >> N;
    assert(1<=H&&H<=1000&&1<=W&&W<=1000&&1<=N&&N<=H*W);
    ll col[H][W];
    set<ll> num;
    rep(i,H){
        rep(j,W){
            cin >> col[i][j];
            assert(1<=col[i][j]&&col[i][j]<=N);
            num.insert(col[i][j]);
        }
    }
    assert(num.size()==N);
    vector<Pr> range;
    rep(i,H){
        rep(j,W-1){
            ll a = col[i][j], b = col[i][j+1];
            if(a==b) continue;
            if(a>b) swap(a,b);
            range.push_back(make_pair(b,a));
        }
    }
    rep(i,H-1){
        rep(j,W){
            ll a = col[i][j], b = col[i+1][j];
            if(a==b) continue;
            if(a>b) swap(a,b);
            range.push_back(make_pair(b,a));
        }
    }
    sort(range.begin(),range.end());
    ll end = 0;
    ll ans = 1;
    for(auto p:range){
        ll a = p.second, b = p.first;
        if(a>=end){
            ans++; end = b;
        }
    }
    cout << ans << endl;
}
0