Baton Relay Game
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=0301
リング配列の各要素を削除するためのデータ構造を考える問題です。ArrayListではTLEとなってしまいました。
考え方
解き方が分からなかったので、提出してあるコードを参考にしました。生徒をノードに見立てて、前方と後方への参照を持つようなデータ構造を作成します。
ソースコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
import java.io.IOException; import java.io.InputStream; import java.util.NoSuchElementException; public class AOJ_No0301_2 { public static void main(String[] args) { FastScanner fs = new FastScanner(); int N = fs.nextInt(); int M = fs.nextInt(); int Q = fs.nextInt(); int []a = new int[M]; int []q = new int[Q]; for(int i = 0; i < M; i++) a[i] = fs.nextInt(); for(int i = 0; i < Q; i++) q[i] = fs.nextInt(); Node []node = new Node[N]; for(int i = 0; i < N; i++) node[i] = new Node(); for(int i = 0; i < N; i++) { node[i].id = i; node[i].next = node[(i + 1) % N]; node[i].prev = node[(i - 1 + N) % N]; } Node p = node[0]; for(int i = 0; i < M; i++) { if(a[i] % 2 == 0) { for(int j = 0; j < a[i]; j++) { p = p.next; } }else { for(int j = 0; j < a[i]; j++) { p = p.prev; } } p.id = -1; p.prev.next = p.next; p.next.prev = p.prev; p = p.next; } StringBuilder sb = new StringBuilder(); for(int i = 0; i < Q; i++) { if(node[q[i]].id == -1) sb.append("0"); else sb.append("1"); sb.append("\n"); } System.out.print(sb.toString()); // for(int i = 0; i < N; i++) { // Node p = node[i]; // System.out.printf("%d %d %d\n", p.id, p.prev, p.next); // } } static class Node{ Node prev; Node next; int id; } static class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; 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());} } } |