結果
問題 | No.1641 Tree Xor Query |
ユーザー | cyclerecycle9 |
提出日時 | 2021-08-09 07:00:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 466 ms / 5,000 ms |
コード長 | 9,330 bytes |
コンパイル時間 | 4,057 ms |
コンパイル使用メモリ | 92,892 KB |
実行使用メモリ | 90,220 KB |
最終ジャッジ日時 | 2024-09-20 04:29:21 |
合計ジャッジ時間 | 7,631 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
37,116 KB |
testcase_01 | AC | 58 ms
37,296 KB |
testcase_02 | AC | 57 ms
36,988 KB |
testcase_03 | AC | 57 ms
37,012 KB |
testcase_04 | AC | 62 ms
37,320 KB |
testcase_05 | AC | 61 ms
37,584 KB |
testcase_06 | AC | 59 ms
37,488 KB |
testcase_07 | AC | 59 ms
37,724 KB |
testcase_08 | AC | 57 ms
37,668 KB |
testcase_09 | AC | 59 ms
37,260 KB |
testcase_10 | AC | 56 ms
37,796 KB |
testcase_11 | AC | 58 ms
37,544 KB |
testcase_12 | AC | 59 ms
37,196 KB |
testcase_13 | AC | 466 ms
89,888 KB |
testcase_14 | AC | 458 ms
90,220 KB |
testcase_15 | AC | 117 ms
41,284 KB |
testcase_16 | AC | 151 ms
44,940 KB |
testcase_17 | AC | 122 ms
42,456 KB |
testcase_18 | AC | 134 ms
44,296 KB |
testcase_19 | AC | 118 ms
40,952 KB |
testcase_20 | AC | 414 ms
70,488 KB |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.*; public class Main { static final long MOD=1000000007; static final long MOD1=998244353; static int ans=0; public static void main(String[] args){ PrintWriter out = new PrintWriter(System.out); InputReader sc=new InputReader(System.in); int N = sc.nextInt(); int Q = sc.nextInt(); graph G = new graph(N); long[] C = sc.nextLongArray(N); for (int i = 0; i < N-1; i++) { int a = sc.nextInt()-1; int b = sc.nextInt()-1; G.addEdge(a, b, 1); G.addEdge(b, a, 1); } int[] in = new int[N]; int[] ou = new int[N]; int[] idx = new int[1]; G.dfs(0, -1, idx, in, ou); SegTree<Long> segTree = new SegTree<Long>(N, (x,y)->x^y, 0l); for (int i = 0; i < N; i++) { segTree.set(in[i], C[i]); } for (int i = 0; i < Q; i++) { int t=sc.nextInt(); int x = sc.nextInt()-1; long y = sc.nextLong(); if (t==1) { segTree.set(in[x], segTree.get(in[x])^y); }else { out.println(segTree.prod(in[x], ou[x])); } } out.flush(); } static class Edge implements Comparable<Edge>{ int to; long v; public Edge(int to,long v) { this.to=to; this.v=v; } @Override public boolean equals(Object obj){ if(obj instanceof Edge) { Edge other = (Edge) obj; return other.to==this.to && other.v==this.v; } return false; }//同値の定義 @Override public int hashCode() { return Objects.hash(this.to,this.v); } @Override public int compareTo( Edge p2 ){ if (this.v>p2.v) { return 1; } else if (this.v<p2.v) { return -1; } else { return 0; } } } static class graph{ ArrayList<Edge>[] list; int size; long INF=Long.MAX_VALUE/2; int[] color; @SuppressWarnings("unchecked") public graph(int n) { size = n; list = new ArrayList[n]; color =new int[n]; for(int i=0;i<n;i++){ list[i] = new ArrayList<Edge>(); } } void addEdge(int from,int to,long w) { list[from].add(new Edge(to,w)); } void dfs(int v,int p,int[] idx, int[] in, int[] out) { in[v] = idx[0]; idx[0]++; for (Edge e: list[v]) { if(e.to == p)continue; dfs(e.to, v, idx, in, out); } out[v] = idx[0]; } } static class InputReader { private InputStream in; private byte[] buffer = new byte[1024]; private int curbuf; private int lenbuf; public InputReader(InputStream in) { this.in = in; this.curbuf = this.lenbuf = 0; } public boolean hasNextByte() { if (curbuf >= lenbuf) { curbuf = 0; try { lenbuf = in.read(buffer); } catch (IOException e) { throw new InputMismatchException(); } if (lenbuf <= 0) return false; } return true; } private int readByte() { if (hasNextByte()) return buffer[curbuf++]; else return -1; } private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); } private void skip() { while (hasNextByte() && isSpaceChar(buffer[curbuf])) curbuf++; } public boolean hasNext() { skip(); return hasNextByte(); } public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while (!isSpaceChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public int nextInt() { if (!hasNext()) throw new NoSuchElementException(); int c = readByte(); while (isSpaceChar(c)) c = readByte(); boolean minus = false; if (c == '-') { minus = true; c = readByte(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res = res * 10 + c - '0'; c = readByte(); } while (!isSpaceChar(c)); return (minus) ? -res : res; } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); int c = readByte(); while (isSpaceChar(c)) c = readByte(); boolean minus = false; if (c == '-') { minus = true; c = readByte(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res = res * 10 + c - '0'; c = readByte(); } while (!isSpaceChar(c)); return (minus) ? -res : res; } public double nextDouble() { return Double.parseDouble(next()); } 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 char[][] nextCharMap(int n, int m) { char[][] map = new char[n][m]; for (int i = 0; i < n; i++) map[i] = next().toCharArray(); return map; } } } //funはlamda式で定義 //prodで取得,setで更新(一点加算なら更新でおk) //二ブタンも出来る //SegTree<Integer> segTree=new SegTree<Integer>(N, (x,y)->x+y, 0);使用例 class SegTree<S> { final int MAX; final int N; final java.util.function.BinaryOperator<S> op; final S E; final S[] data; @SuppressWarnings("unchecked") public SegTree(int n, java.util.function.BinaryOperator<S> op, S e) { this.MAX = n; int k = 1; while (k < n) k <<= 1; this.N = k; this.E = e; this.op = op; this.data = (S[]) new Object[N << 1]; java.util.Arrays.fill(data, E); } public SegTree(S[] dat, java.util.function.BinaryOperator<S> op, S e) { this(dat.length, op, e); build(dat); } private void build(S[] dat) { int l = dat.length; System.arraycopy(dat, 0, data, N, l); for (int i = N - 1; i > 0; i--) { data[i] = op.apply(data[i << 1 | 0], data[i << 1 | 1]); } } public void set(int p, S x) { exclusiveRangeCheck(p); data[p += N] = x; p >>= 1; while (p > 0) { data[p] = op.apply(data[p << 1 | 0], data[p << 1 | 1]); p >>= 1; } } public S get(int p) { exclusiveRangeCheck(p); return data[p + N]; } public S prod(int l, int r) { if (l > r) { throw new IllegalArgumentException( String.format("Invalid range: [%d, %d)", l, r) ); } inclusiveRangeCheck(l); inclusiveRangeCheck(r); S sumLeft = E; S sumRight = E; l += N; r += N; while (l < r) { if ((l & 1) == 1) sumLeft = op.apply(sumLeft, data[l++]); if ((r & 1) == 1) sumRight = op.apply(data[--r], sumRight); l >>= 1; r >>= 1; } return op.apply(sumLeft, sumRight); } public S allProd() { return data[1]; } public int maxRight(int l, java.util.function.Predicate<S> f) { inclusiveRangeCheck(l); if (!f.test(E)) { throw new IllegalArgumentException("Identity element must satisfy the condition."); } if (l == MAX) return MAX; l += N; S sum = E; do { l >>= Integer.numberOfTrailingZeros(l); if (!f.test(op.apply(sum, data[l]))) { while (l < N) { l = l << 1; if (f.test(op.apply(sum, data[l]))) { sum = op.apply(sum, data[l]); l++; } } return l - N; } sum = op.apply(sum, data[l]); l++; } while ((l & -l) != l); return MAX; } public int minLeft(int r, java.util.function.Predicate<S> f) { inclusiveRangeCheck(r); if (!f.test(E)) { throw new IllegalArgumentException("Identity element must satisfy the condition."); } if (r == 0) return 0; r += N; S sum = E; do { r--; while (r > 1 && (r & 1) == 1) r >>= 1; if (!f.test(op.apply(data[r], sum))) { while (r < N) { r = r << 1 | 1; if (f.test(op.apply(data[r], sum))) { sum = op.apply(data[r], sum); r--; } } return r + 1 - N; } sum = op.apply(data[r], sum); } while ((r & -r) != r); return 0; } private void exclusiveRangeCheck(int p) { if (p < 0 || p >= MAX) { throw new IndexOutOfBoundsException( String.format("Index %d out of bounds for the range [%d, %d).", p, 0, MAX) ); } } private void inclusiveRangeCheck(int p) { if (p < 0 || p > MAX) { throw new IndexOutOfBoundsException( String.format("Index %d out of bounds for the range [%d, %d].", p, 0, MAX) ); } } }