結果
問題 | No.1170 Never Want to Walk |
ユーザー | neko_the_shadow |
提出日時 | 2020-08-24 12:50:31 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 7,072 bytes |
コンパイル時間 | 3,106 ms |
コンパイル使用メモリ | 101,948 KB |
実行使用メモリ | 110,300 KB |
最終ジャッジ日時 | 2024-11-06 10:14:54 |
合計ジャッジ時間 | 19,012 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 84 ms
58,192 KB |
testcase_01 | AC | 84 ms
51,448 KB |
testcase_02 | AC | 85 ms
51,008 KB |
testcase_03 | AC | 82 ms
51,416 KB |
testcase_04 | AC | 84 ms
51,472 KB |
testcase_05 | AC | 84 ms
51,260 KB |
testcase_06 | AC | 84 ms
51,220 KB |
testcase_07 | AC | 83 ms
51,328 KB |
testcase_08 | AC | 82 ms
51,460 KB |
testcase_09 | AC | 82 ms
51,252 KB |
testcase_10 | AC | 82 ms
51,384 KB |
testcase_11 | AC | 84 ms
51,020 KB |
testcase_12 | AC | 160 ms
53,448 KB |
testcase_13 | AC | 169 ms
53,436 KB |
testcase_14 | AC | 172 ms
53,212 KB |
testcase_15 | AC | 162 ms
53,152 KB |
testcase_16 | AC | 171 ms
53,648 KB |
testcase_17 | AC | 177 ms
53,472 KB |
testcase_18 | AC | 172 ms
52,828 KB |
testcase_19 | AC | 168 ms
53,048 KB |
testcase_20 | AC | 171 ms
53,476 KB |
testcase_21 | AC | 166 ms
53,484 KB |
testcase_22 | AC | 249 ms
55,124 KB |
testcase_23 | AC | 229 ms
55,668 KB |
testcase_24 | AC | 257 ms
55,692 KB |
testcase_25 | AC | 252 ms
55,212 KB |
testcase_26 | AC | 242 ms
55,340 KB |
testcase_27 | AC | 1,386 ms
108,760 KB |
testcase_28 | AC | 1,428 ms
108,752 KB |
testcase_29 | AC | 1,455 ms
110,300 KB |
testcase_30 | AC | 1,441 ms
108,548 KB |
testcase_31 | AC | 1,491 ms
108,328 KB |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
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.HashMap; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.TreeSet; 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); Map<Long, Integer> toIndex = new HashMap<>(); for (int i = 0; i < n; i++) { toIndex.put(x[i], i); } TreeSet<Long> s1 = new TreeSet<>(); for (int i = n - 1; i >= 0; i--) { for (Long v : s1.subSet(a+x[i], b+x[i]+1)) { int j = toIndex.get(v); uf.union(i, j); } s1.add(x[i]); } // TreeSet<Long> s2 = new TreeSet<>(); // for (int i = 0; i < n; i++) { // for (Long v : s2.subSet(x[i]-b, x[i]-a+1)) { // int j = toIndex.get(v); // uf.union(i, j); // } // s2.add(x[i]); // } for (int i = 0; i < n; i++) { stdout.println(uf.size(i)); } } 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(); } } }