結果
問題 | No.697 池の数はいくつか |
ユーザー | zeke |
提出日時 | 2019-12-03 10:08:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,380 bytes |
コンパイル時間 | 1,052 ms |
コンパイル使用メモリ | 109,748 KB |
実行使用メモリ | 87,840 KB |
最終ジャッジ日時 | 2024-11-25 15:29:07 |
合計ジャッジ時間 | 206,260 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
9,888 KB |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 2 ms
9,892 KB |
testcase_09 | AC | 2 ms
9,888 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | AC | 2 ms
10,020 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 1 ms
9,764 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 2 ms
18,084 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
ソースコード
/* Author:zeke pass System Test! GET AC!! */ #include <iostream> #include <queue> #include <vector> #include <iostream> #include <vector> #include <string> #include <cassert> #include <algorithm> #include <functional> #include <cmath> #include <queue> #include <set> #include <stack> #include <deque> #include <map> #include <iomanip> #include <utility> #include <stack> using ll = long long; using ld = long double; using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define all(x) (x).begin(), (x).end() #define rep3(var, min, max) for (ll(var) = (min); (var) < (max); ++(var)) #define repi3(var, min, max) for (ll(var) = (max)-1; (var) + 1 > (min); --(var)) #define Mp(a, b) make_pair((a), (b)) #define F first #define S second #define Icin(s) \ ll(s); \ cin >> (s); #define Scin(s) \ ll(s); \ cin >> (s); template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; } typedef pair<ll, ll> P; typedef vector<ll> V; typedef vector<V> VV; typedef vector<P> VP; ll mod = 1e9 + 7; ll INF = 1e18; int main() { cin.tie(0); ios::sync_with_stdio(false); int h, w; cin >> h >> w; VV vec(h, V(w)); rep(i, h) rep(j, w) cin >> vec[i][j]; int dx[] = {-1, 0, 1, 0}; int dy[] = {0, 1, 0, -1}; ll res = 0; queue<pair<int, int>> q; vector<vector<bool>> have(h, vector<bool>(w,false)); rep(i,h){ rep(j,w){ if(!have[i][j]&&vec[i][j]==1){ res++; q.push({i, j}); while(!q.empty()){ // cout<<q.size()<<endl; P p = q.front(); q.pop(); int x=p.S; int y = p.F; have[y][x]=1; rep(k,4){ if (x + dx[k] >= 0 && x + dx[k] < w&&y+dy[k]>=0&&y+dy[k]<h){ if(!have[y+dy[k]][x+dx[k]]&&vec[y+dy[k]][x+dx[k]]==1){ q.push({y * dy[k],x + dx[k] }); } } } } } } } cout << res << endl; }