結果
問題 | No.20 砂漠のオアシス |
ユーザー | t8m8⛄️ |
提出日時 | 2015-04-12 14:14:51 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,335 bytes |
コンパイル時間 | 3,679 ms |
コンパイル使用メモリ | 79,968 KB |
実行使用メモリ | 44,248 KB |
最終ジャッジ日時 | 2024-10-13 05:05:32 |
合計ジャッジ時間 | 6,710 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 49 ms
36,912 KB |
testcase_02 | AC | 50 ms
36,932 KB |
testcase_03 | AC | 80 ms
38,952 KB |
testcase_04 | AC | 103 ms
39,576 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 168 ms
43,496 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 50 ms
36,932 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 110 ms
39,888 KB |
testcase_15 | AC | 110 ms
39,388 KB |
testcase_16 | AC | 125 ms
40,776 KB |
testcase_17 | WA | - |
testcase_18 | AC | 126 ms
41,156 KB |
testcase_19 | WA | - |
testcase_20 | AC | 71 ms
38,560 KB |
ソースコード
//No.20 砂漠のオアシス import java.util.*; import java.io.*; import static java.util.Arrays.*; import static java.lang.Math.*; public class No20 { static final Reader in = new Reader(); static final PrintWriter out = new PrintWriter(System.out,false); static void solve(){ int n = in.nextInt(); int v = in.nextInt(); int ox = in.nextInt()-1; int oy = in.nextInt()-1; int[][] l = new int[n][n]; for (int i=0; i<n; i++) l[i] = in.nextIntArray(n); int[] d = dijkstra(l,0); if (d[(n-1)*(n-1)] > v) { out.println("YES"); }else if (ox == -1 && oy == -1) { out.println("NO"); }else { int[] d2 = dijkstra(l,oy*n+ox); out.println(d[oy*n+ox] < v && d2[(n-1)*(n-1)] < 2*d[oy*n+ox] ? "YES" : "NO"); } } static int[] dijkstra(int[][] table, int from) { int[] dy = {0,0,1,-1}; int[] dx = {1,-1,0,0}; int h = table.length, w = table[0].length; final int[] d = new int[h*w]; Arrays.fill(d,Integer.MAX_VALUE/2); TreeSet<Integer> que = new TreeSet<Integer>(new Comparator<Integer>(){ public int compare(Integer a, Integer b) { if (d[a] != d[b]) return d[a] - d[b]; return a - b; } }); que.add(from); d[from] = 0; while (!que.isEmpty()) { int cur = que.pollFirst(); int y = cur/w, x = cur%w; for (int i=0; i<4; i++) { int ny = y + dy[i]; int nx = x + dx[i]; if (nx < 0 || w <= nx || ny < 0 || h <= ny) continue; if (d[cur] + table[ny][nx] < d[ny*w+nx]) { d[ny*w+nx] = d[cur] + table[ny][nx]; que.remove(ny*w+nx); que.add(ny*w+nx); } } } return d; } public static void main(String[] args) throws Exception { long start = System.currentTimeMillis(); solve(); out.flush(); long end = System.currentTimeMillis(); //trace(end-start + "ms"); in.close(); out.close(); } static void trace(Object... o) { System.out.println(deepToString(o));} } class Reader { private final InputStream in; private final byte[] buf = new byte[1024]; private int ptr = 0; private int buflen = 0; public Reader() { this(System.in);} public Reader(InputStream source) { this.in = source;} private boolean hasNextByte() { if (ptr < buflen) return true; ptr = 0; try{ buflen = in.read(buf); }catch (IOException e) {e.printStackTrace();} if (buflen <= 0) return false; return true; } private int readByte() { if (hasNextByte()) return buf[ptr++]; else return -1;} private boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} private void skip() { while(hasNextByte() && !isPrintableChar(buf[ptr])) ptr++;} public boolean hasNext() {skip(); return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while (isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); boolean minus = false; long num = readByte(); if(num == '-'){ num = 0; minus = true; }else if (num < '0' || '9' < num){ throw new NumberFormatException(); }else{ num -= '0'; } while(true){ int b = readByte(); if('0' <= b && b <= '9') num = num * 10 + (b - '0'); else if(b == -1 || !isPrintableChar(b)) return minus ? -num : num; else throw new NoSuchElementException(); } } public int nextInt() { long num = nextLong(); if (num < Integer.MIN_VALUE || Integer.MAX_VALUE < num) throw new NumberFormatException(); return (int)num; } public double nextDouble() { return Double.parseDouble(next()); } public char nextChar() { if (!hasNext()) throw new NoSuchElementException(); return (char)readByte(); } public String nextLine() { while (hasNextByte() && (buf[ptr] == '\n' || buf[ptr] == '\r')) ptr++; if (!hasNextByte()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while (b != '\n' && b != '\r') { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public int[] nextIntArray(int n) { int[] res = new int[n]; for (int i=0; i<n; i++) res[i] = nextInt(); return res; } public char[] nextCharArray(int n) { char[] res = new char[n]; for (int i=0; i<n; i++) res[i] = nextChar(); return res; } public void close() {try{ in.close();}catch(IOException e){ e.printStackTrace();}}; }