結果
問題 | No.1668 Grayscale |
ユーザー | chocorusk |
提出日時 | 2021-09-04 17:17:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 709 ms / 4,000 ms |
コード長 | 1,470 bytes |
コンパイル時間 | 3,707 ms |
コンパイル使用メモリ | 189,552 KB |
実行使用メモリ | 62,104 KB |
最終ジャッジ日時 | 2024-12-21 06:35:02 |
合計ジャッジ時間 | 7,651 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
27,048 KB |
testcase_01 | AC | 12 ms
27,364 KB |
testcase_02 | AC | 12 ms
27,344 KB |
testcase_03 | AC | 12 ms
27,580 KB |
testcase_04 | AC | 11 ms
27,324 KB |
testcase_05 | AC | 12 ms
28,228 KB |
testcase_06 | AC | 449 ms
62,104 KB |
testcase_07 | AC | 456 ms
62,052 KB |
testcase_08 | AC | 170 ms
30,852 KB |
testcase_09 | AC | 709 ms
55,308 KB |
testcase_10 | AC | 334 ms
44,304 KB |
testcase_11 | AC | 12 ms
27,652 KB |
testcase_12 | AC | 15 ms
30,756 KB |
testcase_13 | AC | 39 ms
29,016 KB |
testcase_14 | AC | 111 ms
32,584 KB |
testcase_15 | AC | 74 ms
30,460 KB |
testcase_16 | AC | 54 ms
31,120 KB |
testcase_17 | AC | 31 ms
30,440 KB |
testcase_18 | AC | 11 ms
28,204 KB |
testcase_19 | AC | 12 ms
27,876 KB |
testcase_20 | AC | 11 ms
28,700 KB |
testcase_21 | AC | 14 ms
29,932 KB |
testcase_22 | AC | 11 ms
28,608 KB |
testcase_23 | AC | 11 ms
27,804 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; }