結果
問題 | No.1949 足し算するだけのパズルゲーム(2) |
ユーザー | keisuke6 |
提出日時 | 2022-05-21 09:50:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,665 bytes |
コンパイル時間 | 2,167 ms |
コンパイル使用メモリ | 187,052 KB |
実行使用メモリ | 8,508 KB |
最終ジャッジ日時 | 2024-09-20 11:19:42 |
合計ジャッジ時間 | 4,534 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 108 ms
5,376 KB |
testcase_09 | AC | 137 ms
5,632 KB |
testcase_10 | WA | - |
testcase_11 | AC | 137 ms
5,376 KB |
testcase_12 | AC | 109 ms
5,504 KB |
testcase_13 | AC | 40 ms
5,504 KB |
testcase_14 | AC | 78 ms
5,504 KB |
testcase_15 | AC | 78 ms
5,632 KB |
testcase_16 | AC | 46 ms
5,504 KB |
testcase_17 | WA | - |
testcase_18 | AC | 46 ms
5,632 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 53 ms
5,504 KB |
testcase_25 | AC | 105 ms
5,632 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define make_pair make_tuple signed main(){ int H,W,X,Y; cin>>H>>W>>X>>Y; X--; Y--; vector<vector<int>> G(H,vector<int>(W)); for(int i=0;i<H;i++)for(int j=0;j<W;j++) cin>>G[i][j]; vector<vector<bool>> U(H,vector<bool>(W)); priority_queue<tuple<int,int,int>> s; U[X][Y] = true; int now = G[X][Y]; int i=X; int j=Y; if(i != 0 && G[i-1][j] < now && !U[i-1][j]){ s.push(make_pair(G[i-1][j],i-1,j)); U[i-1][j] = true; } if(j != 0 && G[i][j-1] < now && !U[i][j-1]){ U[i][j-1] = true; s.push(make_pair(G[i][j-1],i,j-1)); } if(i != H-1 && G[i+1][j] < now && !U[i+1][j]){ s.push(make_pair(G[i+1][j],i+1,j)); U[i+1][j] = true; } if(j != W-1 && G[i][j+1] < now && !U[i][j+1]){ U[i][j+1] = true; s.push(make_pair(G[i][j+1],i,j+1)); } int count = 1; while(!s.empty()){ count++; int a,b,c; tie(a,b,c) = s.top(); /*cout<<b<<' '<<c<<endl;*/ s.pop(); if(a > now){ cout<<"No"<<endl; return 0; } now += a; U[b][c] = true; i=b;j=c; if(i != 0 && G[i-1][j] < now && !U[i-1][j]){ U[i-1][j] = true; s.push(make_pair(G[i-1][j],i-1,j)); } if(j != 0 && G[i][j-1] < now && !U[i][j-1]){ U[i][j-1] = true; s.push(make_pair(G[i][j-1],i,j-1)); } if(i != H-1 && G[i+1][j] < now && !U[i+1][j]){ U[i+1][j] = true; s.push(make_pair(G[i+1][j],i+1,j)); } if(j != W-1 && G[i][j+1] < now && !U[i][j+1]){ U[i][j+1] = true; s.push(make_pair(G[i][j+1],i,j+1)); } } if(count == H*W) cout<<"Yes"<<endl; else cout<<"No"<<endl; }