結果
問題 | No.1778 括弧列クエリ / Bracketed Sequence Query |
ユーザー | CuriousFairy315 |
提出日時 | 2021-11-17 16:20:03 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 919 ms / 2,000 ms |
コード長 | 10,348 bytes |
コンパイル時間 | 3,114 ms |
コンパイル使用メモリ | 85,564 KB |
実行使用メモリ | 82,940 KB |
最終ジャッジ日時 | 2024-07-03 21:07:25 |
合計ジャッジ時間 | 20,475 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 383 ms
47,188 KB |
testcase_01 | AC | 396 ms
47,220 KB |
testcase_02 | AC | 394 ms
47,148 KB |
testcase_03 | AC | 368 ms
44,844 KB |
testcase_04 | AC | 402 ms
47,528 KB |
testcase_05 | AC | 411 ms
54,076 KB |
testcase_06 | AC | 320 ms
46,228 KB |
testcase_07 | AC | 161 ms
46,724 KB |
testcase_08 | AC | 685 ms
76,128 KB |
testcase_09 | AC | 248 ms
50,168 KB |
testcase_10 | AC | 395 ms
60,120 KB |
testcase_11 | AC | 648 ms
57,404 KB |
testcase_12 | AC | 414 ms
53,996 KB |
testcase_13 | AC | 671 ms
75,732 KB |
testcase_14 | AC | 431 ms
57,040 KB |
testcase_15 | AC | 88 ms
38,596 KB |
testcase_16 | AC | 806 ms
77,680 KB |
testcase_17 | AC | 666 ms
77,596 KB |
testcase_18 | AC | 919 ms
82,940 KB |
testcase_19 | AC | 762 ms
77,412 KB |
testcase_20 | AC | 869 ms
77,592 KB |
testcase_21 | AC | 75 ms
38,136 KB |
testcase_22 | AC | 83 ms
39,904 KB |
testcase_23 | AC | 417 ms
62,808 KB |
testcase_24 | AC | 499 ms
76,672 KB |
testcase_25 | AC | 690 ms
76,684 KB |
testcase_26 | AC | 752 ms
72,392 KB |
testcase_27 | AC | 586 ms
76,112 KB |
ソースコード
package yukicoder_4516; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.BitSet; import java.util.NoSuchElementException; public class Main { public static void main(String[] args) { new Main(); } public Main() { InputChecker ic = new InputChecker(System.in); java.io.PrintWriter out = new java.io.PrintWriter(System.out); solve(ic, out); out.flush(); } public void solve(InputChecker ic, java.io.PrintWriter out) { int N = ic.nextInt(1, exponent10(2, 5)); ic.nextChar(' '); int Q = ic.nextInt(1, exponent10(2, 5)); ic.readNewLine(); final CharSet BRACKET = new CharSet(); BRACKET.add('(', ')'); char[] S = ic.next(BRACKET).toCharArray(); if (S.length != N) throw new AssertionError(); ic.readNewLine(); LCA lca; int[] pair = new int[N + 2]; { int[] stack = new int[N + 2 >> 1]; int[] parent = new int[N + 2]; int[] depth = new int[N + 2]; int len = 1; for (int i = 1;i <= S.length;++ i) { char c = S[i - 1]; if (c == '(') { stack[len++] = i; } else { pair[i] = stack[--len]; pair[pair[i]] = i; parent[i] = parent[pair[i]] = stack[len - 1]; depth[i] = depth[pair[i]] = len; } } lca = new LCA(parent, depth); } while(Q --> 0) { int x = ic.nextInt(1, N); ic.nextChar(' '); int y = ic.nextInt(1, N); ic.readNewLine(); x = Math.min(x, pair[x]); y = Math.min(y, pair[y]); int ans = lca.lca(x, y); if (ans == 0) out.println(-1); else out.println(ans + " " + pair[ans]); } ic.checkEOF(); } public static class LCA { int[][] parent; int[] depth; public LCA(int[] parent, int[] depth) { int N = 32 - Integer.numberOfLeadingZeros(parent.length - 1); this.parent = new int[N][]; this.depth = depth.clone(); this.parent[0] = parent.clone(); for (int i = 1;i < N;++ i) { int[] last = this.parent[i - 1], next = new int[parent.length]; for (int j = 0;j < parent.length;++ j) next[j] = last[last[j]]; this.parent[i] = next; } } int lca(int i, int j) { if (depth[i] > depth[j]) { int up = depth[i] - depth[j]; for (int x = 31 - Integer.numberOfLeadingZeros(up);up != 0;-- x) { if ((up >> x & 1) != 0) { i = parent[x][i]; up ^= 1 << x; } } if (i == j) return i; for (int x = 31 - Integer.numberOfLeadingZeros(depth[j]);x >= 0;-- x) { int pi = parent[x][i], pj = parent[x][j]; if (pi != pj) { i = pi; j = pj; } } } else { int up = depth[j] - depth[i]; for (int x = 31 - Integer.numberOfLeadingZeros(up);up != 0;-- x) { if ((up >> x & 1) != 0) { j = parent[x][j]; up ^= 1 << x; } } if (i == j) return i; for (int x = 31 - Integer.numberOfLeadingZeros(depth[i]);x >= 0;-- x) { int pi = parent[x][i], pj = parent[x][j]; if (pi != pj) { i = pi; j = pj; } } } return parent[0][i]; } } public static int exponent10(int n, int e) { return n * pow(10, e); } public static long exponent10L(int n, int e) { return n * pow(10L, e); } public static int pow(int a, int b) { int ans = 1; for (int mul = a;b > 0;b >>= 1, mul *= mul) if ((b & 1) != 0) ans *= mul; return ans; } public static long pow(long a, long b) { long ans = 1; for (long mul = a;b > 0;b >>= 1, mul *= mul) if ((b & 1) != 0) ans *= mul; return ans; } public static class CharSet { private final BitSet set = new BitSet(256); public void add(char... c) { for (char i : c) set.set(i); } public void add(CharSet... s) { for (CharSet i : s) set.or(i.set); } public boolean contains(char... c) { for (char i : c) if (!set.get(i)) return false; return true; } public boolean contains(String s) { return contains(s.toCharArray()); } private static final class Chars extends CharSet { public Chars(char... c) { super.add(c); } public Chars(CharSet... s) { super.add(s); } @Override public void add(char... c) { throw new UnsupportedOperationException(); } @Override public void add(CharSet... s) { throw new UnsupportedOperationException(); } } public static final CharSet NUMBER = new Chars('0','1','2','3','4','5','6','7','8','9'); public static final CharSet LOWER = new Chars('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'); public static final CharSet UPPER = new Chars('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'); public static final CharSet ALPHABET = new Chars(LOWER, UPPER); } public static class InputChecker { private InputStream in; private final byte[] buffer = new byte[1024]; private final byte[] undo = new byte[1024]; private int undoSize = 0; private int read = 0; private int length = 0; public InputChecker(InputStream in) { this.in = in; } public final void setInputStream(InputStream in) { this.in = in; } public final void setInputStream(File in) { try { this.in = new FileInputStream(in); } catch (FileNotFoundException e) { e.printStackTrace(); } } private boolean hasNextByte() { if (undoSize > 0) return true; if (read < length) return true; read = 0; try { length = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } return length > 0; } private byte readByte() { if (hasNextByte()) return undoSize > 0 ? undo[--undoSize] : buffer[read++]; throw new NoSuchElementException(); } private void undo(byte b) { undo[undoSize ++] = b; } private void undo(char c) { if ((c & 0xFF80) == 0) { undo((byte)c); return; } undo((byte)(c & 0x3F | 0x80)); if ((c & 0xF800) == 0) { undo((byte)(c >> 6 & 0x1F | 0xC0)); } else { undo((byte)(c >> 6 & 0x3F | 0x80)); undo((byte)(c >> 12 | 0xE0)); } } public final boolean hasNext() { return hasNextByte(); } public final char nextChar() { byte b = readByte(); if ((b & 0x80) == 0) return (char)b; if ((b & 0x20) == 0) return (char)((b & 0x1F) << 6 | readByte() & 0x3F); return (char)((b & 0xF) << 12 | (readByte() & 0x3F) << 6 | readByte() & 0x3F); } public final char nextChar(char estimate) { char c = nextChar(); if (estimate == c) return estimate; undo(c); throw new AssertionError(); } public final char nextChar(CharSet estimate) { char c = nextChar(); if (estimate.contains(c)) return c; undo(c); throw new AssertionError(); } public final void readNewLine() { char c = nextChar(); if (c == '\r') { c = nextChar(); if (c != '\n') undo(c); return; } else if (c == '\n') return; undo(c); throw new AssertionError(); } public final void checkEOF() { if (hasNextByte()) throw new AssertionError(); } public final String next(CharSet contains) { StringBuilder sb = new StringBuilder(); try { do { char c = nextChar(); if (!contains.contains(c)) { undo(c); return sb.toString(); } sb.append(c); } while(true); } catch (NoSuchElementException e) { if (sb.length() <= 0) throw new AssertionError(); return sb.toString(); } } public final int nextInt() { byte b = readByte(); int n = 0; if (b == '-') { if (!isNumber(b = readByte())) { undo(b); throw new NumberFormatException(); } try { if (b == '0') { if (!isNumber(b = readByte())) { undo(b); return 0; } throw new NumberFormatException(); } do n = Math.addExact(Math.multiplyExact(n, 10), '0' - b); while(isNumber(b = readByte())); undo(b); } catch (NoSuchElementException e) { } return n; } if (!isNumber(b)) { undo(b); throw new NumberFormatException(); } try { if (b == '0') { if (!isNumber(b = readByte())) { undo(b); return 0; } throw new NumberFormatException(); } do n = Math.addExact(Math.multiplyExact(n, 10), b - '0'); while(isNumber(b = readByte())); undo(b); } catch (NoSuchElementException e) { } return n; } public final int nextInt(int min, int max) { int n = nextInt(); if (min <= n && n <= max) return n; throw new NumberFormatException(); } private static boolean isNumber(byte c) { return '0' <= c && c <= '9'; } public final long nextLong() { byte b = readByte(); long n = 0; if (b == '-') { if (!isNumber(b = readByte())) { undo(b); throw new NumberFormatException(); } try { if (b == '0') { if (!isNumber(b = readByte())) { undo(b); return 0; } throw new NumberFormatException(); } do n = Math.addExact(Math.multiplyExact(n, 10), '0' - b); while(isNumber(b = readByte())); undo(b); } catch (NoSuchElementException e) { } return n; } if (!isNumber(b)) { undo(b); throw new NumberFormatException(); } try { if (b == '0') { if (!isNumber(b = readByte())) { undo(b); return 0; } throw new NumberFormatException(); } do n = Math.addExact(Math.multiplyExact(n, 10), b - '0'); while(isNumber(b = readByte())); undo(b); } catch (NoSuchElementException e) { } return n; } public final long nextLong(long min, long max) { long n = nextLong(); if (min <= n && n <= max) return n; throw new NumberFormatException(); } public final double nextDouble() { StringBuilder sb = new StringBuilder(); byte b = readByte(); if (b == '-') { sb.append(b); b = readByte(); } if (b == '0') { sb.append(b); b = readByte(); } else { while(isNumber(b)) { sb.append(b); b = readByte(); } } if (b == '.') { sb.append(b); b = readByte(); while(isNumber(b)) { sb.append(b); b = readByte(); } } if (b == 'e' || b == 'E') { sb.append(b); b = readByte(); if (b == '-' || b == '+') { sb.append(b); b = readByte(); } while(isNumber(b)) { sb.append(b); b = readByte(); } } undo(b); return Double.parseDouble(sb.toString()); } } }