結果

問題 No.1705 Mode of long array
ユーザー 小野寺健小野寺健
提出日時 2021-11-30 13:10:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,772 ms / 3,000 ms
コード長 1,755 bytes
コンパイル時間 3,350 ms
コンパイル使用メモリ 78,784 KB
実行使用メモリ 77,400 KB
最終ジャッジ日時 2024-07-03 07:29:07
合計ジャッジ時間 66,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,140 KB
testcase_01 AC 128 ms
41,152 KB
testcase_02 AC 122 ms
39,872 KB
testcase_03 AC 255 ms
46,400 KB
testcase_04 AC 239 ms
45,996 KB
testcase_05 AC 263 ms
46,132 KB
testcase_06 AC 391 ms
48,012 KB
testcase_07 AC 434 ms
48,084 KB
testcase_08 AC 406 ms
48,096 KB
testcase_09 AC 398 ms
47,876 KB
testcase_10 AC 359 ms
47,900 KB
testcase_11 AC 364 ms
47,892 KB
testcase_12 AC 385 ms
48,176 KB
testcase_13 AC 1,330 ms
76,060 KB
testcase_14 AC 1,156 ms
67,004 KB
testcase_15 AC 1,035 ms
61,316 KB
testcase_16 AC 1,201 ms
61,920 KB
testcase_17 AC 1,076 ms
61,284 KB
testcase_18 AC 959 ms
61,012 KB
testcase_19 AC 1,286 ms
65,692 KB
testcase_20 AC 1,021 ms
63,268 KB
testcase_21 AC 1,135 ms
73,596 KB
testcase_22 AC 1,446 ms
77,400 KB
testcase_23 AC 933 ms
57,812 KB
testcase_24 AC 938 ms
57,880 KB
testcase_25 AC 917 ms
57,336 KB
testcase_26 AC 931 ms
58,232 KB
testcase_27 AC 963 ms
58,192 KB
testcase_28 AC 931 ms
57,088 KB
testcase_29 AC 922 ms
57,940 KB
testcase_30 AC 967 ms
58,208 KB
testcase_31 AC 817 ms
58,116 KB
testcase_32 AC 906 ms
57,928 KB
testcase_33 AC 1,652 ms
77,332 KB
testcase_34 AC 1,539 ms
77,276 KB
testcase_35 AC 1,656 ms
77,180 KB
testcase_36 AC 1,515 ms
76,600 KB
testcase_37 AC 1,586 ms
77,180 KB
testcase_38 AC 1,560 ms
77,024 KB
testcase_39 AC 1,601 ms
77,236 KB
testcase_40 AC 1,642 ms
77,328 KB
testcase_41 AC 1,582 ms
77,060 KB
testcase_42 AC 1,564 ms
77,164 KB
testcase_43 AC 1,750 ms
75,288 KB
testcase_44 AC 1,772 ms
74,776 KB
testcase_45 AC 1,770 ms
74,632 KB
testcase_46 AC 1,707 ms
74,284 KB
testcase_47 AC 1,760 ms
73,860 KB
testcase_48 AC 1,744 ms
74,644 KB
testcase_49 AC 1,615 ms
77,056 KB
testcase_50 AC 1,651 ms
77,032 KB
testcase_51 AC 1,590 ms
77,048 KB
testcase_52 AC 1,620 ms
77,012 KB
testcase_53 AC 1,760 ms
77,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.List;
import java.util.ArrayList;
import java.util.Scanner;

public class No1705 {
	
	private static class KeyValue implements Comparable<KeyValue> {
		public Integer key;
		public Long value;
		KeyValue(int key, long value) {
			this.key = key;
			this.value = value;
		}
		public int compareTo(KeyValue kv) {
			int n = value.compareTo(kv.value);
			if (n == 0) {
				return key.compareTo(kv.key);
			} else {
				return n;
			}
		}
		public KeyValue max(KeyValue kv) {
			return this.compareTo(kv) >= 0 ? this : kv;
		}
	}
	
	private static class SegmentTree {
		private int n;
		private KeyValue[] dat;
		SegmentTree(int n) {
			this.n = 1;
			while (this.n < n) {
				this.n *= 2;
			}
			dat = new KeyValue[2*this.n-1];
			for (int i=0; i < this.n*2-1; i++) {
				dat[i] = new KeyValue(-1, -1L);
			}
		}
		public void update(int k, long a) {
			KeyValue kv = new KeyValue(k, a);
			k += n - 1;
			dat[k] = kv;
			while (k > 0) {
				k = (k - 1) / 2;
				dat[k] = dat[k * 2 + 1].max(dat[k * 2 + 2]);
			}
		}
		public int max() {
			return dat[0].key + 1;
		}
		public long dat(int i) {
			return dat[i + n - 1].value;
		}
	}

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long N = scan.nextLong();
		int M = scan.nextInt();
		SegmentTree tree = new SegmentTree(M);
		for (int i=0; i < M; i++) {
			long a = scan.nextLong();
			tree.update(i, a);
		}
		int Q = scan.nextInt();
		for (int i=0; i < Q; i++) {
			int t = scan.nextInt();
			int x = scan.nextInt();
			long y = scan.nextLong();
			if (t == 1) {
				tree.update(x-1, tree.dat(x-1) + y);
			} else if (t == 2) {
				tree.update(x-1, tree.dat(x-1) - y);		
			} else {
				System.out.println(tree.max());
			}
		}
		scan.close();
	}

}
0