結果
問題 | No.86 TVザッピング(2) |
ユーザー | リチウム |
提出日時 | 2014-12-05 05:47:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 2,235 ms / 5,000 ms |
コード長 | 2,270 bytes |
コンパイル時間 | 4,053 ms |
コンパイル使用メモリ | 77,528 KB |
実行使用メモリ | 48,732 KB |
最終ジャッジ日時 | 2024-06-07 10:28:11 |
合計ジャッジ時間 | 12,051 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
40,172 KB |
testcase_01 | AC | 117 ms
40,840 KB |
testcase_02 | AC | 117 ms
41,228 KB |
testcase_03 | AC | 105 ms
40,164 KB |
testcase_04 | AC | 125 ms
41,480 KB |
testcase_05 | AC | 121 ms
41,200 KB |
testcase_06 | AC | 107 ms
40,192 KB |
testcase_07 | AC | 124 ms
40,952 KB |
testcase_08 | AC | 147 ms
41,884 KB |
testcase_09 | AC | 512 ms
47,408 KB |
testcase_10 | AC | 2,235 ms
48,732 KB |
testcase_11 | AC | 124 ms
41,464 KB |
testcase_12 | AC | 119 ms
41,032 KB |
testcase_13 | AC | 122 ms
40,936 KB |
testcase_14 | AC | 182 ms
44,196 KB |
testcase_15 | AC | 249 ms
47,800 KB |
testcase_16 | AC | 254 ms
47,644 KB |
testcase_17 | AC | 126 ms
41,100 KB |
testcase_18 | AC | 126 ms
41,132 KB |
testcase_19 | AC | 124 ms
41,260 KB |
testcase_20 | AC | 122 ms
41,256 KB |
testcase_21 | AC | 765 ms
47,416 KB |
testcase_22 | AC | 119 ms
41,348 KB |
testcase_23 | AC | 199 ms
45,540 KB |
testcase_24 | AC | 125 ms
41,116 KB |
testcase_25 | AC | 117 ms
40,832 KB |
testcase_26 | AC | 113 ms
41,160 KB |
testcase_27 | AC | 118 ms
40,920 KB |
testcase_28 | AC | 117 ms
40,816 KB |
testcase_29 | AC | 162 ms
42,360 KB |
testcase_30 | AC | 104 ms
40,152 KB |
testcase_31 | AC | 122 ms
41,036 KB |
testcase_32 | AC | 118 ms
41,052 KB |
ソースコード
import java.util.*; import static java.lang.Math.*; public class ppp { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int m=sc.nextInt(); boolean ue[][]=new boolean[n][m]; boolean sita[][]=new boolean[n][m]; boolean hidari[][]=new boolean[n][m]; boolean migi[][]=new boolean[n][m]; boolean map[][]=new boolean[n][m]; int sum=0; for(int i=0;i<n;i++){ String s=sc.next(); for(int j=0;j<m;j++){ if(s.substring(j,j+1).equals(".")){ map[i][j]=true; sum++; } } } for(int i=1;i<n;i++){ for(int j=0;j<m;j++){ ue[i][j]=map[i-1][j]|ue[i-1][j]; sita[n-1-i][j]=map[n-i][j]|sita[n-i][j]; } } for(int i=1;i<m;i++){ for(int j=0;j<n;j++){ hidari[j][i]=map[j][i-1]|hidari[j][i-1]; migi[j][m-1-i]=map[j][m-i]|migi[j][m-i]; } } int dx[]={0,-1,0,1}; int dy[]={-1,0,1,0}; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ for(int k=0;k<4;k++){ if(!map[i][j])continue; int Y=i+dy[k]; int X=j+dx[k]; if(!(0<=X && X<m && 0<=Y && Y<n))continue; if(!map[i+dy[k]][j+dx[k]])continue; int nowx=j; int nowy=i; int d=k; int now=sum; boolean mapc[][]=new boolean[n][m]; for(int p=0;p<n;p++){ for(int w=0;w<m;w++){ mapc[p][w]=map[p][w]; } } while(now>0){ int y=nowy+dy[d%4]; int x=nowx+dx[d%4]; if(!(0<=x && x<m && 0<=y && y<n) ||!mapc[nowy+dy[d%4]][nowx+dx[d%4]])d++; y=nowy+dy[d%4]; x=nowx+dx[d%4]; if(!(0<=x && x<m && 0<=y && y<n))break; nowy+=dy[d%4]; nowx+=dx[d%4]; if(!mapc[nowy][nowx])break; mapc[nowy][nowx]=false; now--; switch(d%4){ case 0: if(migi[nowy][nowx])break; case 1: if(ue[nowy][nowx])break; case 2: if(hidari[nowy][nowx])break; case 3: if(sita[nowy][nowx])break; } } if(nowy==i && nowx==j && now==0){ System.out.println("YES"); return; } } } } System.out.println("NO"); }}