結果

問題 No.728 ギブ and テイク
ユーザー 37zigen37zigen
提出日時 2018-08-25 12:01:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,192 ms / 3,000 ms
コード長 1,771 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 79,828 KB
実行使用メモリ 103,312 KB
最終ジャッジ日時 2024-06-25 06:42:38
合計ジャッジ時間 28,097 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,280 KB
testcase_01 AC 133 ms
41,304 KB
testcase_02 AC 133 ms
41,116 KB
testcase_03 AC 119 ms
40,348 KB
testcase_04 AC 133 ms
41,116 KB
testcase_05 AC 119 ms
41,572 KB
testcase_06 AC 133 ms
41,312 KB
testcase_07 AC 128 ms
41,100 KB
testcase_08 AC 177 ms
41,736 KB
testcase_09 AC 143 ms
41,376 KB
testcase_10 AC 152 ms
41,464 KB
testcase_11 AC 189 ms
42,300 KB
testcase_12 AC 197 ms
43,036 KB
testcase_13 AC 562 ms
49,408 KB
testcase_14 AC 632 ms
49,476 KB
testcase_15 AC 474 ms
48,416 KB
testcase_16 AC 611 ms
49,452 KB
testcase_17 AC 584 ms
49,240 KB
testcase_18 AC 1,702 ms
84,640 KB
testcase_19 AC 1,865 ms
92,812 KB
testcase_20 AC 2,085 ms
91,356 KB
testcase_21 AC 1,806 ms
87,976 KB
testcase_22 AC 1,213 ms
70,840 KB
testcase_23 AC 939 ms
63,964 KB
testcase_24 AC 1,624 ms
78,088 KB
testcase_25 AC 1,566 ms
80,712 KB
testcase_26 AC 1,255 ms
65,524 KB
testcase_27 AC 2,192 ms
103,312 KB
testcase_28 AC 1,871 ms
87,520 KB
testcase_29 AC 129 ms
41,316 KB
testcase_30 AC 128 ms
41,208 KB
testcase_31 AC 115 ms
39,960 KB
testcase_32 AC 116 ms
40,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

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

	class BIT {
		int n;
		long[] v;

		public BIT(int n_) {
			n = n_;
			v = new long[n + 1];
		}

		void add(int k, long val) {
			++k;
			while (k <= n) {
				v[k] += val;
				k += k & -k;
			}
		}

		long sum(int k) {
			++k;
			k = Math.min(k, n);
			long ret = 0;
			while (k > 0) {
				ret += v[k];
				k -= k & -k;
			}
			return ret;
		}

		long sum(long a, long b) {
			return sum((int) b) - sum((int) a - 1);
		}
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long[][] A = new long[N][3];
		for (int i = 0; i < N; ++i) {
			A[i][0] = sc.nextLong();
		}
		for (int i = 0; i < N; ++i) {
			A[i][1] = sc.nextLong();
			A[i][2] = sc.nextLong();
		}
		ArrayList<Integer>[] rm = new ArrayList[N];
		for (int i = 0; i < N; ++i)
			rm[i] = new ArrayList<>();
		BIT bit = new BIT(N);
		long ans = 0;
		for (int i = 0; i < N; ++i) {
			{// A[m][0]>=A[i][0]-A[i][1]となる最小のmを求めたい
				int ok = N - 1, ng = -1;
				while (ok - ng > 1) {
					int m = (ok + ng) / 2;
					if (A[m][0] >= A[i][0] - A[i][1]) {
						ok = m;
					} else {
						ng = m;
					}
				}
				ans += bit.sum(ok, i);
			}
			bit.add(i, 1);
			// A[m][0] <= A[i][0] + A[i][2]なる最大のmを求めたい

			{
				int ok = i, ng = N;
				while (ng - ok > 1) {
					int m = (ok + ng) / 2;
					if (A[m][0] <= A[i][0] + A[i][2]) {
						ok = m;
					} else {
						ng = m;
					}
				}
				rm[ok].add(i);
			}
			for (int v : rm[i]) {
				bit.add(v, -1);
			}
		}
		System.out.println(ans);
	}

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