結果
問題 | No.1170 Never Want to Walk |
ユーザー | neko_the_shadow |
提出日時 | 2020-08-24 15:46:34 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 959 ms / 2,000 ms |
コード長 | 9,935 bytes |
コンパイル時間 | 2,924 ms |
コンパイル使用メモリ | 101,788 KB |
実行使用メモリ | 84,932 KB |
最終ジャッジ日時 | 2024-11-06 10:21:23 |
合計ジャッジ時間 | 20,281 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
51,380 KB |
testcase_01 | AC | 80 ms
51,456 KB |
testcase_02 | AC | 80 ms
51,532 KB |
testcase_03 | AC | 79 ms
51,396 KB |
testcase_04 | AC | 79 ms
51,092 KB |
testcase_05 | AC | 80 ms
51,452 KB |
testcase_06 | AC | 82 ms
51,596 KB |
testcase_07 | AC | 82 ms
51,528 KB |
testcase_08 | AC | 80 ms
51,136 KB |
testcase_09 | AC | 80 ms
51,416 KB |
testcase_10 | AC | 80 ms
51,424 KB |
testcase_11 | AC | 80 ms
51,392 KB |
testcase_12 | AC | 143 ms
53,080 KB |
testcase_13 | AC | 141 ms
53,120 KB |
testcase_14 | AC | 138 ms
52,204 KB |
testcase_15 | AC | 146 ms
53,012 KB |
testcase_16 | AC | 151 ms
53,560 KB |
testcase_17 | AC | 148 ms
53,192 KB |
testcase_18 | AC | 138 ms
53,156 KB |
testcase_19 | AC | 144 ms
52,196 KB |
testcase_20 | AC | 140 ms
52,944 KB |
testcase_21 | AC | 143 ms
53,176 KB |
testcase_22 | AC | 151 ms
53,496 KB |
testcase_23 | AC | 141 ms
52,036 KB |
testcase_24 | AC | 147 ms
53,296 KB |
testcase_25 | AC | 140 ms
52,300 KB |
testcase_26 | AC | 157 ms
53,312 KB |
testcase_27 | AC | 914 ms
84,832 KB |
testcase_28 | AC | 909 ms
84,624 KB |
testcase_29 | AC | 850 ms
77,208 KB |
testcase_30 | AC | 940 ms
83,284 KB |
testcase_31 | AC | 901 ms
84,716 KB |
testcase_32 | AC | 920 ms
84,932 KB |
testcase_33 | AC | 914 ms
84,572 KB |
testcase_34 | AC | 902 ms
77,608 KB |
testcase_35 | AC | 957 ms
84,692 KB |
testcase_36 | AC | 920 ms
83,128 KB |
testcase_37 | AC | 959 ms
84,768 KB |
testcase_38 | AC | 936 ms
84,876 KB |
ソースコード
package _1170; import java.io.BufferedReader; import java.io.EOFException; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.io.UncheckedIOException; import java.lang.reflect.Array; import java.lang.reflect.Field; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.Arrays; import java.util.Deque; import java.util.List; import java.util.Objects; import java.util.regex.Pattern; import java.util.stream.Collectors; import java.util.stream.IntStream; public class Main { public void exec() { int n = stdin.nextInt(); long a = stdin.nextLong(); long b = stdin.nextLong(); long[] x = stdin.nextLongArray(n); UnionFind uf = new UnionFind(n); int[] imos = new int[n]; for (int i = 0; i < n; i++) { int p = ArrayUtils.bisectLeft(x, x[i]+a); int q = ArrayUtils.bisectRight(x, x[i]+b); if (p < q) { uf.union(i, p); imos[p]++; imos[q-1]--; } } for (int i = 0; i < n - 1; i++) { imos[i+1] += imos[i]; } for (int i = 0; i < n - 1; i++) { if (imos[i] > 0) { uf.union(i, i+1); } } for (int i = 0; i < n; i++) { stdout.println(uf.size(i)); } } public static class ArrayUtils { private ArrayUtils() {} public static void reverse(int[] a) { for (int i = 0, n = a.length; i < n/2; i++) { int t = a[i]; a[i] = a[n-i-1]; a[n-i-1] = t; } } public static void reverse(long[] a) { for (int i = 0, n = a.length; i < n/2; i++) { long t = a[i]; a[i] = a[n-i-1]; a[n-i-1] = t; } } public static <T> void reverse(T[] a) { for (int i = 0, n = a.length; i < n/2; i++) { T t = a[i]; a[i] = a[n-i-1]; a[n-i-1] = t; } } public static int bisectLeft(int[] a, int x) { int ng = -1; int ok = a.length; while (Math.abs(ok-ng) > 1) { int mi = (ok+ng)/2; if (a[mi] >= x) { ok = mi; } else { ng = mi; } } return ok; } public static int bisectRight(int[] a, int x) { int ng = -1; int ok = a.length; while (Math.abs(ok-ng) > 1) { int mi = (ok+ng)/2; if (a[mi] > x) { ok = mi; } else { ng = mi; } } return ok; } public static int bisectLeft(long[] a, long x) { int ng = -1; int ok = a.length; while (Math.abs(ok-ng) > 1) { int mi = (ok+ng)/2; if (a[mi] >= x) { ok = mi; } else { ng = mi; } } return ok; } public static int bisectRight(long[] a, long x) { int ng = -1; int ok = a.length; while (Math.abs(ok-ng) > 1) { int mi = (ok+ng)/2; if (a[mi] > x) { ok = mi; } else { ng = mi; } } return ok; } public static <T> int bisectLeft(List<? extends Comparable<? super T>> a, T x) { int ng = -1; int ok = a.size(); while (Math.abs(ok-ng) > 1) { int mi = (ok+ng)/2; if (a.get(mi).compareTo(x) >= 0) { ok = mi; } else { ng = mi; } } return ok; } public static <T> int bisectRight(List<? extends Comparable<? super T>> a, T x) { int ng = -1; int ok = a.size(); while (Math.abs(ok-ng) > 1) { int mi = (ok+ng)/2; if (a.get(mi).compareTo(x) > 0) { ok = mi; } else { ng = mi; } } return ok; } } public class UnionFind { private int[] parent; private int[] size; public UnionFind(int n) { this.parent = IntStream.range(0, n).toArray(); this.size = new int[n]; Arrays.fill(this.size, 1); } public int find(int x) { if (parent[x] == x) { return x; } parent[x] = find(parent[x]); return parent[x]; } public boolean same(int x, int y) { return find(x) == find(y); } public void union(int x, int y) { x = find(x); y = find(y); if (x == y) { return ; } if (size[x] < size[y]) { parent[x] = y; size[y] += size[x]; } else { parent[y] = x; size[x] += size[y]; } } public int size(int x) { return size[find(x)]; } } private static final Stdin stdin = new Stdin(); private static final Stdout stdout = new Stdout(); public static void main(String[] args) { try { new Main().exec(); } finally { stdout.flush(); } } public static class Stdin { private BufferedReader stdin; private Deque<String> tokens; private Pattern delim; public Stdin() { stdin = new BufferedReader(new InputStreamReader(System.in)); tokens = new ArrayDeque<>(); delim = Pattern.compile(" "); } public String nextString() { try { if (tokens.isEmpty()) { String line = stdin.readLine(); if (line == null) { throw new UncheckedIOException(new EOFException()); } delim.splitAsStream(line).forEach(tokens::addLast); } return tokens.pollFirst(); } catch (IOException e) { throw new UncheckedIOException(e); } } public int nextInt() { return Integer.parseInt(nextString()); } public double nextDouble() { return Double.parseDouble(nextString()); } public long nextLong() { return Long.parseLong(nextString()); } public String[] nextStringArray(int n) { String[] a = new String[n]; for (int i = 0; i < n; i++) a[i] = nextString(); return a; } public int[] nextIntArray(int n) { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = nextInt(); return a; } public double[] nextDoubleArray(int n) { double[] a = new double[n]; for (int i = 0; i < n; i++) a[i] = nextDouble(); return a; } public long[] nextLongArray(int n) { long[] a = new long[n]; for (int i = 0; i < n; i++) a[i] = nextLong(); return a; } } public static class Stdout { private PrintWriter stdout; public Stdout() { stdout = new PrintWriter(System.out, false); } public void printf(String format, Object ... args) { String line = String.format(format, args); if (line.endsWith(System.lineSeparator())) { stdout.print(line); } else { stdout.println(line); } } public void println(Object ... o) { String line = Arrays.stream(o).map(Objects::toString).collect(Collectors.joining(" ")); stdout.println(line); } public void debug(Object ... objs) { String line = Arrays.stream(objs).map(this::deepToString).collect(Collectors.joining(" ")); stdout.printf("DEBUG: %s%n", line); } private String deepToString(Object o) { if (o == null) { return "null"; } Class<?> clazz = o.getClass(); // 配列の場合 if (clazz.isArray()) { int len = Array.getLength(o); String[] tokens = new String[len]; for (int i = 0; i < len; i++) { tokens[i] = deepToString(Array.get(o, i)); } return "{" + String.join(",", tokens) + "}"; } // toStringがOverrideされている場合 if (Arrays.stream(clazz.getDeclaredMethods()).anyMatch(method -> method.getName().equals("toString") && method.getParameterCount() == 0)) { return Objects.toString(o); } // Tupleの場合 (フィールドがすべてpublicのJava Beans) try { List<String> tokens = new ArrayList<>(); for (Field field : clazz.getFields()) { String token = String.format("%s=%s", field.getName(), deepToString(field.get(o))); tokens.add(token); } return String.format("%s:[%s]", clazz.getName(), String.join(",", tokens)); } catch (IllegalAccessException e) { throw new IllegalArgumentException(e); } } public void flush() { stdout.flush(); } } }