結果

問題 No.340 雪の足跡
ユーザー KilisameKilisame
提出日時 2016-06-08 12:16:55
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 8,638 bytes
コンパイル時間 4,460 ms
コンパイル使用メモリ 80,584 KB
実行使用メモリ 61,456 KB
最終ジャッジ日時 2024-04-17 09:42:29
合計ジャッジ時間 16,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,696 KB
testcase_01 AC 53 ms
36,928 KB
testcase_02 AC 53 ms
36,804 KB
testcase_03 AC 52 ms
36,852 KB
testcase_04 AC 52 ms
36,924 KB
testcase_05 AC 69 ms
38,468 KB
testcase_06 AC 53 ms
36,708 KB
testcase_07 AC 52 ms
36,436 KB
testcase_08 AC 52 ms
36,648 KB
testcase_09 AC 52 ms
36,436 KB
testcase_10 AC 54 ms
36,648 KB
testcase_11 AC 94 ms
38,504 KB
testcase_12 AC 100 ms
38,952 KB
testcase_13 AC 101 ms
38,832 KB
testcase_14 AC 231 ms
44,704 KB
testcase_15 AC 253 ms
44,972 KB
testcase_16 AC 196 ms
43,908 KB
testcase_17 AC 264 ms
45,696 KB
testcase_18 AC 248 ms
45,596 KB
testcase_19 AC 253 ms
45,976 KB
testcase_20 AC 463 ms
49,664 KB
testcase_21 AC 312 ms
47,424 KB
testcase_22 AC 53 ms
37,536 KB
testcase_23 AC 646 ms
50,916 KB
testcase_24 AC 296 ms
49,276 KB
testcase_25 AC 400 ms
49,476 KB
testcase_26 AC 204 ms
44,220 KB
testcase_27 AC 119 ms
40,844 KB
testcase_28 AC 242 ms
44,460 KB
testcase_29 AC 714 ms
50,164 KB
testcase_30 AC 591 ms
49,536 KB
testcase_31 AC 950 ms
61,456 KB
testcase_32 TLE -
testcase_33 AC 949 ms
61,056 KB
testcase_34 AC 934 ms
61,388 KB
testcase_35 AC 828 ms
51,324 KB
testcase_36 AC 847 ms
50,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.Comparator;
import java.util.HashSet;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.Set;
import java.util.TreeSet;

public class Main {

    private int w;

    private int h;

    private Set<int[]>[] wSetArray;

    private Set<int[]>[] hSetArray;

    private boolean[] moved;

    private static final String ODEKAKEDEKINAI = "Odekakedekinai..";

    private static IntArrayComparator comparator;

    public static void main(String[] args) {
        FastScanner cin = new FastScanner(System.in);
        Main snow = new Main();
        int w = cin.nextInt();
        int h = cin.nextInt();
        snow.initField(w, h);
        snow.footPrint(cin);
        snow.execute();
    }

    private void initField(int w, int h) {
        this.w = w;
        this.h = h;
        comparator = new IntArrayComparator();
        wSetArray = new Set[w];
        for (int i = 0; i < w; i++) {
            wSetArray[i] = new TreeSet<int[]>(comparator);
        }
        hSetArray = new Set[h];
        for (int i = 0; i < h; i++) {
            hSetArray[i] = new TreeSet<int[]>(comparator);
        }
        moved = new boolean[w * h];
    }

    private void execute() {
        if (w * h - 1 == 0) {
            System.out.println(0);
            System.exit(0);
        }
        /* block[0]を起点として、移動開始 */
        Set<Integer> next = new HashSet<Integer>();
        next.add(0);
        int stepCount = 0;
        while (true) {
            next = step(next);
            stepCount++;
            if (next.isEmpty()) {
                System.out.println(ODEKAKEDEKINAI);
                break;
            }
            if (next.contains(w * h - 1)) {
                System.out.println(stepCount);
                break;
            }
        }
    }

    private Set<Integer> step(Set<Integer> beforeBlocks) {
        Set<Integer> nextBlocks = new HashSet<Integer>();
        for (int number : beforeBlocks) {
            /* 現在numberを踏破済みSetに入れる。falseが返った場合は既に踏破していたところなのでSkip */
            moved[number] = true;
            /* 上移動チェック */
            if (number < w * (h - 1) && !moved[number + w] && canMove(new int[] {number, number + w})) {
                nextBlocks.add(number + w);
            }
            /* 下移動チェック */
            if (number > w && !moved[number - w] && canMove(new int[] {number - w, number})) {
                nextBlocks.add(number - w);
            }
            /* 左移動チェック */
            if (number % w != 0 && !moved[number - 1] && canMove(new int[] {number - 1, number})) {
                nextBlocks.add(number - 1);
            }
            /* 右移動チェック */
            if (number % w != w - 1 && !moved[number + 1] && canMove(new int[] {number, number + 1})) {
                nextBlocks.add(number + 1);
            }
        }
        return nextBlocks;
    }

    private void footPrint(FastScanner cin) {
        int limit = cin.nextInt();
        for (int i = 0; i < limit; i++) {
            int index = cin.nextInt();
            int[] currentArray = new int[2];
            currentArray[1] = cin.nextInt();
            for (int j = 0; j < index; j++) {
                currentArray[j % 2] = cin.nextInt();
                int[] oneStep = new int[2];
                oneStep[0] = Math.min(currentArray[0], currentArray[1]);
                oneStep[1] = Math.max(currentArray[0], currentArray[1]);
                recordStep(oneStep);
            }
        }
    }

    private void recordStep(int[] oneStep) {
        Set<int[]> targetSet;
        if (oneStep[0] / w == oneStep[1] / w) {
            /* 横の移動 = minとmaxをwで割ったときの値が等しい */
            int hindex = oneStep[0] / w;
            targetSet = hSetArray[hindex];
        } else {
            /* 縦の移動 */
            int windex = oneStep[0] % w;
            targetSet = wSetArray[windex];
        }
        if (targetSet.contains(oneStep)) {
            return;
        }
        Iterator<int[]> iterator = targetSet.iterator();
        while (iterator.hasNext()) {
            int[] current = iterator.next();
            if (oneStep[1] < current[0]) {
                /* 範囲重複なし。これ以降のチェックは不要。そこまでの足跡を記録 */
                break;
            }
            if (oneStep[0] > current[1]) {
                /* 範囲重複なし。次の足跡との比較へ移る */
                continue;
            }
            if (oneStep[0] >= current[0] && oneStep[1] <= current[1]) {
                /* 完全に吸収。記録不要。 */
                return;
            }
            /* 範囲重複のため書き換え。現在値を置き換える */
            oneStep[0] = Math.min(oneStep[0], current[0]);
            oneStep[1] = Math.max(oneStep[1], current[1]);
            iterator.remove();
        }
        targetSet.add(oneStep);
    }

    private boolean canMove(int[] oneStep) {
        Set<int[]> targetSet;
        if (oneStep[0] / w == oneStep[1] / w) {
            /* 横の移動 = minとmaxをwで割ったときの値が等しい */
            int hindex = oneStep[0] / w;
            targetSet = hSetArray[hindex];
        } else {
            /* 縦の移動 */
            int windex = oneStep[0] % w;
            targetSet = wSetArray[windex];
        }
        Iterator<int[]> iterator = targetSet.iterator();
        while (iterator.hasNext()) {
            int[] current = iterator.next();
            if (oneStep[1] < current[0]) {
                break;
            }
            if (oneStep[0] > current[1]) {
                continue;
            }
            if (oneStep[0] >= current[0] && oneStep[1] <= current[1]) {
                return true;
            }
        }
        return false;
    }

    class IntArrayComparator implements Comparator<int[]> {
        @Override
        public int compare(int[] o1, int[] o2) {
            return o1[0] == o2[0] ? o1[1] == o2[1] ? 0 : o1[1] - o2[1] : o1[0] - o2[0];
        }
    }
}

/**
 * http://qiita.com/p_shiki37/items/a0f6aac33bf60f5f65e4 よりFastScannerをお借りして実装。
 */
class FastScanner {
    private final InputStream in;
    private final byte[] buffer = new byte[1024];
    private int ptr = 0;
    private int buflen = 0;

    public FastScanner(InputStream in) {
        this.in = in;
    }

    private boolean hasNextByte() {
        if (ptr < buflen) {
            return true;
        } else {
            ptr = 0;
            try {
                buflen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (buflen <= 0) {
                return false;
            }
        }
        return true;
    }

    private int readByte() {
        if (hasNextByte())
            return buffer[ptr++];
        else
            return -1;
    }

    private static boolean isPrintableChar(int c) {
        return 33 <= c && c <= 126;
    }

    public boolean hasNext() {
        while (hasNextByte() && !isPrintableChar(buffer[ptr]))
            ptr++;
        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();
        long n = 0;
        boolean minus = false;
        int b = readByte();
        if (b == '-') {
            minus = true;
            b = readByte();
        }
        if (b < '0' || '9' < b) {
            throw new NumberFormatException();
        }
        while (true) {
            if ('0' <= b && b <= '9') {
                n *= 10;
                n += b - '0';
            } else if (b == -1 || !isPrintableChar(b)) {
                return minus ? -n : n;
            } else {
                throw new NumberFormatException();
            }
            b = readByte();
        }
    }

    public int nextInt() {
        long nl = nextLong();
        if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE)
            throw new NumberFormatException();
        return (int) nl;
    }

    public double nextDouble() {
        return Double.parseDouble(next());
    }
}
0