結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | 37zigen |
提出日時 | 2020-03-21 18:40:00 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 282 ms / 2,000 ms |
コード長 | 1,296 bytes |
コンパイル時間 | 1,852 ms |
コンパイル使用メモリ | 77,656 KB |
実行使用メモリ | 58,324 KB |
最終ジャッジ日時 | 2024-12-23 07:46:29 |
合計ジャッジ時間 | 6,726 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 211 ms
57,176 KB |
testcase_01 | AC | 201 ms
57,060 KB |
testcase_02 | AC | 196 ms
56,964 KB |
testcase_03 | AC | 197 ms
57,288 KB |
testcase_04 | AC | 178 ms
57,080 KB |
testcase_05 | AC | 210 ms
57,212 KB |
testcase_06 | AC | 234 ms
57,180 KB |
testcase_07 | AC | 245 ms
57,316 KB |
testcase_08 | AC | 220 ms
57,256 KB |
testcase_09 | AC | 210 ms
57,764 KB |
testcase_10 | AC | 213 ms
57,544 KB |
testcase_11 | AC | 211 ms
57,140 KB |
testcase_12 | AC | 236 ms
57,860 KB |
testcase_13 | AC | 243 ms
58,324 KB |
testcase_14 | AC | 258 ms
58,208 KB |
testcase_15 | AC | 282 ms
58,240 KB |
testcase_16 | AC | 210 ms
56,992 KB |
testcase_17 | AC | 229 ms
58,032 KB |
ソースコード
import java.io.FileNotFoundException; import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) throws FileNotFoundException { long t = System.currentTimeMillis(); new Main().run(); System.err.println(System.currentTimeMillis() - t); } Scanner sc = new Scanner(System.in); void run() { int N=sc.nextInt(); int L=sc.nextInt(); int R=sc.nextInt(); int[][] map=new int[2700][1300]; for(int i=0;i<map.length;++i)for(int j=0;j<map[i].length;++j)map[i][j]=-1; for(int n=0;n<N;++n) { int xl=Math.max(L,sc.nextInt()); int yu=sc.nextInt()+501; int xr=Math.min(R,sc.nextInt()); int yd=sc.nextInt()+501; for(int x=xl;x<=xr;++x) { for(int y=yu;y<=yd;++y) { if(map[y][x]!=-1)throw new AssertionError(); map[y][x]=n; } } } boolean[] hit=new boolean[N]; for(int i=0;i<map[map.length-1].length;++i)map[map.length-1][i]=-2; for(int h=map.length-2;h>=0;--h) { for(int w=0;w<map[h].length;++w) { if(map[h+1][w]!=-2)continue; if(map[h][w]==-1) { map[h][w]=-2; }else { hit[map[h][w]]=true; } } } for(int i=0;i<N;++i) { System.out.println(hit[i]?1:0); } } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }