結果
問題 | No.1668 Grayscale |
ユーザー | 沙耶花 |
提出日時 | 2021-09-03 22:31:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 4,266 ms |
コンパイル使用メモリ | 262,792 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-05-09 05:18:36 |
合計ジャッジ時間 | 6,231 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 133 ms
7,936 KB |
testcase_07 | AC | 133 ms
7,808 KB |
testcase_08 | AC | 102 ms
7,424 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000001 int main(){ int H,W,N; cin>>H>>W>>N; vector A(H,vector<int>(W)); rep(i,H){ rep(j,W){ scanf("%d",&A[i][j]); } } vector dx = {0,0,1,-1},dy = {1,-1,0,0}; vector<bool> ok(N-1,true); rep(i,H){ rep(j,W){ rep(k,4){ int ii = i+dx[k],jj = j+dy[k]; if(ii<0||ii>=H||jj<0||jj>=W)continue; if(A[i][j] <= A[ii][jj]){ if(A[i][j]+1==A[ii][jj]){ ok[A[i][j]-1] = false; } } } } } int ans = N; rep(i,ok.size()){ if(ok[i])ans--; } cout<<ans<<endl; return 0; }