結果
問題 | No.1668 Grayscale |
ユーザー | chocorusk |
提出日時 | 2021-09-04 17:17:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 686 ms / 4,000 ms |
コード長 | 1,470 bytes |
コンパイル時間 | 3,693 ms |
コンパイル使用メモリ | 189,840 KB |
実行使用メモリ | 62,180 KB |
最終ジャッジ日時 | 2024-06-01 03:58:15 |
合計ジャッジ時間 | 7,128 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
27,576 KB |
testcase_01 | AC | 11 ms
27,124 KB |
testcase_02 | AC | 11 ms
27,536 KB |
testcase_03 | AC | 10 ms
27,632 KB |
testcase_04 | AC | 11 ms
27,972 KB |
testcase_05 | AC | 11 ms
27,584 KB |
testcase_06 | AC | 422 ms
62,180 KB |
testcase_07 | AC | 424 ms
62,056 KB |
testcase_08 | AC | 158 ms
30,932 KB |
testcase_09 | AC | 686 ms
55,360 KB |
testcase_10 | AC | 332 ms
44,276 KB |
testcase_11 | AC | 11 ms
27,488 KB |
testcase_12 | AC | 13 ms
30,876 KB |
testcase_13 | AC | 37 ms
29,640 KB |
testcase_14 | AC | 107 ms
32,760 KB |
testcase_15 | AC | 70 ms
30,436 KB |
testcase_16 | AC | 52 ms
31,252 KB |
testcase_17 | AC | 29 ms
29,508 KB |
testcase_18 | AC | 11 ms
27,352 KB |
testcase_19 | AC | 11 ms
27,684 KB |
testcase_20 | AC | 11 ms
28,368 KB |
testcase_21 | AC | 13 ms
30,168 KB |
testcase_22 | AC | 11 ms
28,028 KB |
testcase_23 | AC | 11 ms
27,680 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #include <atcoder/all> #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair<int, int> P; int h, w, n; int c[1010][1010]; vector<int> v[1000010]; int main() { cin>>h>>w>>n; for(int i=0; i<h; i++){ for(int j=0; j<w; j++){ cin>>c[i][j]; c[i][j]--; } } for(int i=0; i<h-1; i++){ for(int j=0; j<w; j++){ if(c[i][j]!=c[i+1][j]){ v[max(c[i][j], c[i+1][j])].push_back(min(c[i][j], c[i+1][j])); } } } for(int i=0; i<h; i++){ for(int j=0; j<w-1; j++){ if(c[i][j]!=c[i][j+1]){ v[max(c[i][j], c[i][j+1])].push_back(min(c[i][j], c[i][j+1])); } } } int mx=-1; int ans=1; for(int i=1; i<n; i++){ for(auto l:v[i]){ //cout<<l<<" "<<i<<endl; if(mx<l){ mx=i-1; ans++; } } } cout<<ans<<endl; return 0; }