結果

問題 No.86 TVザッピング(2)
ユーザー Yang33
提出日時 2018-04-17 18:44:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 3,966 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 170,340 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 12:51:52
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include <bits/stdc++.h>
using namespace std;
using VS = vector<string>; using LL = long long;
using VI = vector<int>; using VVI = vector<VI>;
using PII = pair<int, int>; using PLL = pair<LL, LL>;
using VL = vector<LL>; using VVL = vector<VL>;
#define ALL(a) begin((a)),end((a))
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define SZ(a) int((a).size())
#define SORT(c) sort(ALL((c)))
#define RSORT(c) sort(RALL((c)))
#define UNIQ(c) (c).erase(unique(ALL((c))), end((c)))
#define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++)
#define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)--)
#define debug(x) cerr << #x << ": " << x << endl
const int INF = 1e9; const LL LINF = 1e16;
const LL MOD = 1000000007; const double PI = acos(-1.0);
/* ----- 2018/04/17 Problem: yukicoder 086 / Link: http://yukicoder.me/problems/no/086 ----- */
/* ------------
yuki
NMN×M
yuki
yuki
yuki
90
    
    
N, M,
---------- */
/* ----------
-------- */
LL ans = 0LL;
int DY[] = { 1,0,-1,0 };
int DX[] = { 0,-1,0,1 };
int main() {
cin.tie(0);
ios_base::sync_with_stdio(false);
int H, W; cin >> H >> W;
VS m(H);
FOR(i, 0, H) {
cin >> m[i];
}
PII S = PII(INF, INF);
FOR(i, 0, H) {
FOR(j, 0, W) {
if (m[i][j] == '.')S = min(S, PII(i, j));
}
}
int sy = S.first, sx = S.second;
auto isValid = [&](int y, int x) -> bool {
return 0 <= y && y < H && 0 <= x && x < W&&m[y][x] == '.';
};
int dir = 0;
int y = sy, x = sx;
int cntL = 0, cntR = 0;
while (1) {
while (isValid(y + DY[dir], x + DX[dir])) {
y += DY[dir], x += DX[dir];
m[y][x] = '#';
}
int ld = (dir + 3) % 4;
int rd = (dir + 1) % 4;
if (isValid(y + DY[rd], x + DX[rd])) {
dir = rd;
cntR++;
}else if (isValid(y + DY[ld], x + DX[ld])) {//
dir = ld;
cntL++;
}
else {
break;
}
}
int dat = 0;
FOR(i, 0, H) {
FOR(j, 0, W) {
dat += m[i][j] == '.';
}
}
if (cntR <= 1 && dat == 0) {
cout << "YES" << endl;
}
else {
cout << "NO" << "\n";
}
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0