結果
問題 | No.697 池の数はいくつか |
ユーザー | IL_msta |
提出日時 | 2018-06-12 20:29:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,987 bytes |
コンパイル時間 | 1,166 ms |
コンパイル使用メモリ | 104,576 KB |
実行使用メモリ | 39,680 KB |
最終ジャッジ日時 | 2024-11-25 13:34:29 |
合計ジャッジ時間 | 6,691 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 1 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 1 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 1 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 527 ms
39,552 KB |
testcase_30 | WA | - |
testcase_31 | AC | 516 ms
39,552 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #pragma region include #include <iostream> #include <iomanip> #include <stdio.h> #include <sstream> #include <algorithm> #include <iterator> #include <cmath> #include <complex> #include <string> #include <cstring> #include <vector> #include <bitset> #include <queue> #include <set> #include <map> #include <stack> #include <list> #include <ctime> //// //#include <random>// #pragma endregion //#include ///////// #pragma region typedef typedef long long LL; typedef long double LD; typedef unsigned long long ULL; #pragma endregion //typedef ////定数 const int INF = (int)1e9; const LL MOD = (LL)1e9+7; const LL LINF = (LL)4e18+20; const LD PI = acos(-1.0); const double EPS = 1e-9; ///////// using namespace::std; void solve(){ int R,C; cin>>R>>C; vector<vector<int> > fld(R,vector<int>(C)); for(int r=0;r<R;++r){ for(int c=0;c<C;++c){ cin>>fld[r][c]; if(fld[r][c]){ fld[r][c] = -1; } } } int count = 0; vector<bool> use(R*C+1,false); for(int r=0;r<R;++r){ for(int c=0;c<C;++c){ int color = fld[r][c]; if(color == 0){ continue; } if(color == -1 ){ ++count; color = count; use[color] = true; }else{ //colorに値が入っている。 } if(r+1<R){ int aite = fld[r+1][c]; if( aite == -1 ){ fld[r+1][c] = color; }else if(aite >0 && color != aite){//既に縫ってある。 use[ max(color,aite) ] = false; } } if(c+1<C){ int aite = fld[r][c+1]; if(aite==-1){ fld[r][c+1] = color; }else if(aite>0 && color != aite){ use[ max(color,aite) ] = false; } } } } int ans = 0; for(int i=1;i<=R*C;++i){ if(use[i]){ ++ans; } } cout << ans << endl; } #pragma region main signed main(void){ std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed;//小数を10進数表示 cout << setprecision(16);//小数点以下の桁数を指定//coutとcerrで別 solve(); } #pragma endregion //main()