結果

問題 No.1705 Mode of long array
ユーザー ks2mks2m
提出日時 2021-10-08 23:22:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,413 ms / 3,000 ms
コード長 1,804 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 79,628 KB
実行使用メモリ 110,384 KB
最終ジャッジ日時 2024-07-23 07:22:26
合計ジャッジ時間 43,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,288 KB
testcase_01 AC 54 ms
50,360 KB
testcase_02 AC 53 ms
50,460 KB
testcase_03 AC 141 ms
52,540 KB
testcase_04 AC 123 ms
52,324 KB
testcase_05 AC 145 ms
52,608 KB
testcase_06 AC 204 ms
56,588 KB
testcase_07 AC 198 ms
56,360 KB
testcase_08 AC 197 ms
56,724 KB
testcase_09 AC 203 ms
56,096 KB
testcase_10 AC 200 ms
56,540 KB
testcase_11 AC 206 ms
56,500 KB
testcase_12 AC 199 ms
56,452 KB
testcase_13 AC 1,192 ms
101,448 KB
testcase_14 AC 892 ms
80,708 KB
testcase_15 AC 637 ms
64,784 KB
testcase_16 AC 869 ms
68,028 KB
testcase_17 AC 637 ms
66,260 KB
testcase_18 AC 572 ms
64,532 KB
testcase_19 AC 1,059 ms
77,076 KB
testcase_20 AC 779 ms
67,000 KB
testcase_21 AC 972 ms
90,404 KB
testcase_22 AC 1,413 ms
105,288 KB
testcase_23 AC 505 ms
58,868 KB
testcase_24 AC 504 ms
58,720 KB
testcase_25 AC 524 ms
58,344 KB
testcase_26 AC 491 ms
58,880 KB
testcase_27 AC 538 ms
58,560 KB
testcase_28 AC 526 ms
58,132 KB
testcase_29 AC 525 ms
58,168 KB
testcase_30 AC 520 ms
58,212 KB
testcase_31 AC 489 ms
58,960 KB
testcase_32 AC 512 ms
58,724 KB
testcase_33 AC 1,346 ms
109,568 KB
testcase_34 AC 1,357 ms
109,392 KB
testcase_35 AC 1,388 ms
109,368 KB
testcase_36 AC 1,359 ms
110,324 KB
testcase_37 AC 1,359 ms
109,776 KB
testcase_38 AC 1,382 ms
109,196 KB
testcase_39 AC 1,353 ms
109,400 KB
testcase_40 AC 1,384 ms
109,772 KB
testcase_41 AC 1,351 ms
110,384 KB
testcase_42 AC 1,367 ms
110,044 KB
testcase_43 AC 749 ms
77,636 KB
testcase_44 AC 745 ms
77,948 KB
testcase_45 AC 763 ms
77,476 KB
testcase_46 AC 768 ms
77,948 KB
testcase_47 AC 728 ms
77,348 KB
testcase_48 AC 694 ms
77,916 KB
testcase_49 AC 912 ms
81,520 KB
testcase_50 AC 890 ms
81,096 KB
testcase_51 AC 877 ms
81,248 KB
testcase_52 AC 889 ms
80,776 KB
testcase_53 AC 909 ms
81,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;
import java.util.TreeSet;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		long n = Long.parseLong(sa[0]);
		int m = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		long[] a = new long[m];
		for (int i = 0; i < m; i++) {
			a[i] = Long.parseLong(sa[i]);
		}
		int q = Integer.parseInt(br.readLine());
		int[] t = new int[q];
		int[] x = new int[q];
		long[] y = new long[q];
		for (int i = 0; i < q; i++) {
			sa = br.readLine().split(" ");
			t[i] = Integer.parseInt(sa[0]);
			x[i] = Integer.parseInt(sa[1]);
			y[i] = Long.parseLong(sa[2]);
		}
		br.close();

		TreeMap<Long, TreeSet<Integer>> map = new TreeMap<>();
		Map<Integer, Long> map2 = new HashMap<>();
		for (int i = 0; i < m; i++) {
			TreeSet<Integer> set = map.get(a[i]);
			if (set == null) {
				set = new TreeSet<>();
				map.put(a[i], set);
			}
			set.add(i + 1);
			map2.put(i + 1, a[i]);
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			if (t[i] == 3) {
				pw.println(map.lastEntry().getValue().last());
			} else {
				long bef = map2.get(x[i]);
				long aft = bef;
				if (t[i] == 1) {
					aft += y[i];
				} else {
					aft -= y[i];
				}
				TreeSet<Integer> set1 = map.get(bef);
				TreeSet<Integer> set2 = map.get(aft);
				if (set2 == null) {
					set2 = new TreeSet<>();
					map.put(aft, set2);
				}
				set1.remove(x[i]);
				set2.add(x[i]);
				if (set1.isEmpty()) {
					map.remove(bef);
				}
				map2.put(x[i], aft);
			}
		}
		pw.flush();
	}
}
0