結果

問題 No.619 CardShuffle
ユーザー 37zigen37zigen
提出日時 2017-12-12 03:23:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,423 ms / 3,000 ms
コード長 5,444 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 80,052 KB
実行使用メモリ 124,724 KB
最終ジャッジ日時 2024-06-02 04:07:23
合計ジャッジ時間 38,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
49,768 KB
testcase_01 AC 57 ms
50,132 KB
testcase_02 AC 59 ms
50,308 KB
testcase_03 AC 57 ms
50,012 KB
testcase_04 AC 53 ms
50,132 KB
testcase_05 AC 50 ms
49,720 KB
testcase_06 AC 58 ms
50,708 KB
testcase_07 AC 59 ms
50,876 KB
testcase_08 AC 56 ms
49,760 KB
testcase_09 AC 58 ms
50,448 KB
testcase_10 AC 50 ms
50,184 KB
testcase_11 AC 50 ms
49,984 KB
testcase_12 AC 53 ms
49,792 KB
testcase_13 AC 52 ms
50,180 KB
testcase_14 AC 53 ms
50,128 KB
testcase_15 AC 50 ms
50,016 KB
testcase_16 AC 2,059 ms
117,140 KB
testcase_17 AC 1,949 ms
116,892 KB
testcase_18 AC 2,129 ms
117,824 KB
testcase_19 AC 1,941 ms
116,996 KB
testcase_20 AC 1,833 ms
121,428 KB
testcase_21 AC 2,310 ms
114,580 KB
testcase_22 AC 2,167 ms
114,216 KB
testcase_23 AC 2,423 ms
115,116 KB
testcase_24 AC 2,277 ms
114,248 KB
testcase_25 AC 1,815 ms
117,376 KB
testcase_26 AC 1,550 ms
108,916 KB
testcase_27 AC 1,324 ms
108,564 KB
testcase_28 AC 1,469 ms
108,280 KB
testcase_29 AC 1,407 ms
107,188 KB
testcase_30 AC 1,389 ms
118,308 KB
testcase_31 AC 49 ms
49,896 KB
testcase_32 AC 1,910 ms
124,724 KB
testcase_33 AC 1,715 ms
109,828 KB
testcase_34 AC 1,373 ms
109,144 KB
testcase_35 AC 433 ms
60,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Deque;
import java.util.NoSuchElementException;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	final long MOD = 1_000_000_000 + 7;

	void run() {
		Scanner sc = new Scanner();
		PrintWriter pw = new PrintWriter(System.out);
		int n = sc.nextInt();
		n = (n + 1) / 2;
		SegTree seg = new SegTree(n);
		for (int i = 0; i < n; ++i) {
			long v = sc.nextLong();
			int j = i + seg.n - 1;
			String leftop = "!", rightop = "!";
			if (i != n - 1)
				rightop = sc.next();
			if (i != 0)
				leftop = seg.val[j - 1].right_op;
			seg.val[j] = new V();
			seg.val[j].dq.add(v);
			seg.val[j].left_op = leftop;
			seg.val[j].right_op = rightop;
		}

		for (int i = seg.n - 2; i >= 0; --i) {
			seg.val[i] = merge(seg.val[2 * i + 1], seg.val[2 * i + 2]);
		}
		int Q = sc.nextInt();
		while (Q-- > 0) {
			String T = sc.next();
			int x = sc.nextInt();
			int y = sc.nextInt();
			if (T.equals("?")) {
				pw.println(seg.query((x - 1) / 2, (y - 1) / 2 + 1));
			} else {
				if (x % 2 == 1) {
					x = (x - 1) / 2;
					y = (y - 1) / 2;
					seg.swapVal(x, y);
				} else {
					x = x / 2 - 1;
					y = y / 2 - 1;
					seg.swapOp(x, y);
				}
			}
		}
		pw.close();
	}

	class SegTree {
		int n;
		V[] val;

		public SegTree(int n_) {
			n = 1;
			while (n < n_) {
				n *= 2;
			}
			val = new V[2 * n - 1];
			for (int i = 0; i < val.length; ++i) {
				val[i] = new V();
			}
		}

		void swapOp(int i, int j) {
			i += n - 1;
			j += n - 1;
			String opI = val[i].right_op;
			String opJ = val[j].right_op;
			val[i].right_op = opJ;
			val[i + 1].left_op = opJ;
			val[j].right_op = opI;
			val[j + 1].left_op = opI;
			int[] a = new int[] { i, i + 1, j, j + 1 };
			while (a[0] > 0) {
				for (int k = 0; k < a.length; ++k) {
					a[k] = (a[k] - 1) / 2;
					val[a[k]] = merge(val[2 * a[k] + 1], val[2 * a[k] + 2]);
				}
			}
		}

		void swapVal(int i, int j) {
			long x = val[i + n - 1].dq.peek();
			long y = val[j + n - 1].dq.peek();
			setVal(i, y);
			setVal(j, x);
		}

		void setVal(int k, long v) {
			k += n - 1;
			val[k].dq.clear();
			val[k].dq.add(v);
			while (k > 0) {
				k = (k - 1) / 2;
				val[k] = merge(val[2 * k + 1], val[2 * k + 2]);
			}

		}

		long query(int a, int b) {
			long ret = 0;
			V pnd = query(a, b, 0, n, 0);
			for (long v : pnd.dq) {
				ret = (ret + v) % MOD;
			}
			return ret;
		}

		V query(int a, int b, int l, int r, int k) {
			if (b <= l || r <= a) {
				return new V();
			} else if (a <= l && r <= b) {
				return val[k];
			} else {
				V vl = query(a, b, l, (l + r) / 2, 2 * k + 1);
				V vr = query(a, b, (l + r) / 2, r, 2 * k + 2);
				return merge(vl, vr);
			}
		}
	}

	V merge(V u, V v) {
		V ret = new V();
		for (long n : u.dq) {
			ret.dq.addLast(n);
		}
		boolean f = false;
		if (u.right_op.equals("*") && v.left_op.equals("*")) {
			ret.dq.pollLast();
			ret.dq.addLast(u.dq.peekLast() * v.dq.peekFirst() % MOD);
			f = true;
		}
		for (long n : v.dq) {
			if (!f)
				ret.dq.addLast(n);
			else
				f = false;
		}
		if (ret.dq.size() > 3) {
			long tmp1 = ret.dq.pollFirst();
			while (ret.dq.size() > 3) {
				long tmp2 = (ret.dq.pollFirst() + ret.dq.pollFirst()) % MOD;
				ret.dq.addFirst(tmp2);
			}
			ret.dq.addFirst(tmp1);
		}
		ret.left_op = u.left_op;
		ret.right_op = v.right_op;
		return ret;
	}

	class V {
		Deque<Long> dq = new ArrayDeque<>();
		String left_op = "!";
		String right_op = "!";
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	class Scanner {
		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 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());
		}
	}
}
0