結果
問題 | No.1949 足し算するだけのパズルゲーム(2) |
ユーザー | 蜜蜂 |
提出日時 | 2022-05-06 01:40:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 161 ms / 3,000 ms |
コード長 | 1,781 bytes |
コンパイル時間 | 4,159 ms |
コンパイル使用メモリ | 239,916 KB |
実行使用メモリ | 12,120 KB |
最終ジャッジ日時 | 2024-07-05 02:59:43 |
合計ジャッジ時間 | 6,851 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 78 ms
7,168 KB |
testcase_08 | AC | 33 ms
7,168 KB |
testcase_09 | AC | 71 ms
7,040 KB |
testcase_10 | AC | 78 ms
7,168 KB |
testcase_11 | AC | 82 ms
7,296 KB |
testcase_12 | AC | 76 ms
7,296 KB |
testcase_13 | AC | 67 ms
7,168 KB |
testcase_14 | AC | 101 ms
11,996 KB |
testcase_15 | AC | 98 ms
11,864 KB |
testcase_16 | AC | 20 ms
7,168 KB |
testcase_17 | AC | 161 ms
12,120 KB |
testcase_18 | AC | 20 ms
7,168 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 106 ms
11,932 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 45 ms
7,296 KB |
testcase_25 | AC | 66 ms
7,296 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:70:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 70 | auto [enemy,i,j]=que.top(); | ^
ソースコード
//g++ 2.cpp -std=c++14 -O2 -I . #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vll = vector<ll>; using vvll = vector<vll>; using vld = vector<ld>; using vvld = vector<vld>; using vst = vector<string>; using vvst = vector<vst>; #define fi first #define se second #define pb push_back #define eb emplace_back #define pq_big(T) priority_queue<T,vector<T>,less<T>> #define pq_small(T) priority_queue<T,vector<T>,greater<T>> #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) #define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end()) using T = tuple<ll,int,int>; vi dx = {1,0,-1,0}; vi dy = {0,1,0,-1}; bool ok(int h,int w,int i,int j){ if(i<0||h<=i||j<0||w<=j){ return false; } return true; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int h,w,x,y; cin>>h>>w>>x>>y; x--;y--; vvll a(h,vll(w)),seen(h,vll(w,0)); rep(i,0,h){ rep(j,0,w){ cin>>a[i][j]; } } seen[x][y]=1; ll p=a[x][y]; pq_small(T) que; rep(d,0,4){ int ni=x+dx[d],nj=y+dy[d]; if(ok(h,w,ni,nj)){ que.push({a[ni][nj],ni,nj}); } } while(!que.empty()){ auto [enemy,i,j]=que.top(); que.pop(); if(seen[i][j]==1)continue; if(p>enemy){ seen[i][j]=1; p+=enemy; rep(d,0,4){ int ni=i+dx[d],nj=j+dy[d]; if(ok(h,w,ni,nj)&&seen[ni][nj]==0){ que.push({a[ni][nj],ni,nj}); } } } } rep(i,0,h){ rep(j,0,w){ if(seen[i][j]==0){ cout<<"No\n"; return 0; } } } cout<<"Yes\n"; }