結果

問題 No.1705 Mode of long array
ユーザー 小野寺健小野寺健
提出日時 2021-12-17 11:00:01
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 1,293 bytes
コンパイル時間 13,534 ms
コンパイル使用メモリ 229,156 KB
実行使用メモリ 13,164 KB
最終ジャッジ日時 2024-09-14 11:39:21
合計ジャッジ時間 62,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 20 ms
5,376 KB
testcase_04 AC 17 ms
5,376 KB
testcase_05 AC 24 ms
5,376 KB
testcase_06 AC 76 ms
5,376 KB
testcase_07 AC 88 ms
5,376 KB
testcase_08 AC 92 ms
5,376 KB
testcase_09 AC 77 ms
5,376 KB
testcase_10 AC 70 ms
5,376 KB
testcase_11 AC 77 ms
5,376 KB
testcase_12 AC 76 ms
5,376 KB
testcase_13 AC 2,397 ms
13,144 KB
testcase_14 AC 1,720 ms
8,956 KB
testcase_15 AC 1,523 ms
6,272 KB
testcase_16 AC 1,852 ms
6,272 KB
testcase_17 AC 1,310 ms
6,272 KB
testcase_18 AC 1,099 ms
6,016 KB
testcase_19 AC 2,093 ms
6,272 KB
testcase_20 AC 1,327 ms
6,272 KB
testcase_21 AC 1,935 ms
13,164 KB
testcase_22 AC 2,844 ms
12,160 KB
testcase_23 AC 1,987 ms
6,144 KB
testcase_24 AC 1,984 ms
6,144 KB
testcase_25 AC 2,011 ms
6,144 KB
testcase_26 AC 1,986 ms
6,144 KB
testcase_27 AC 1,980 ms
6,144 KB
testcase_28 AC 1,945 ms
6,144 KB
testcase_29 AC 1,970 ms
6,144 KB
testcase_30 AC 2,156 ms
6,144 KB
testcase_31 AC 1,985 ms
6,144 KB
testcase_32 AC 2,032 ms
6,144 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

type KeyValue struct {
	key int
	value int
}

type SegmentTree struct {
	n int
	dat []*KeyValue
}

func (this *SegmentTree) new(n int) {
	this.n = 1
	for this.n < n {
		this.n *= 2
	}
	this.dat = make([]*KeyValue, 2*this.n-1)
	for i := 0; i < 2*this.n-1; i++ {
		this.dat[i] = &KeyValue{-1, -1}
	}
}

func (this *SegmentTree) update(k int, a int) {
	i := k
	k += this.n - 1
	this.dat[k].key = i
	this.dat[k].value = a
	for k > 0 {
		k = (k - 1) / 2
		this.dat[k] = Max(this.dat[k * 2 + 1], this.dat[k * 2 + 2])
	}
}

func (this SegmentTree) max() int {
	return this.dat[0].key + 1
}

func (this SegmentTree) get(i int) int {
	return this.dat[i + this.n - 1].value
}

func Max(a *KeyValue, b *KeyValue) *KeyValue{
	if a.value > b.value {
		return a
	} else if a.value < b.value {
		return b
	} else if a.key >= b.key {
		return a
	} else {
		return b
	}
}

func main() {
	var N, M int
	fmt.Scan(&N, &M)
	var tree SegmentTree
	tree.new(M)
	for i := 0; i < M; i++ {
		var a int
		fmt.Scan(&a)
		tree.update(i, a)
	}

	var Q int
	fmt.Scan(&Q)
	for i := 0; i < Q; i++ {
		var t, x, y int
		fmt.Scan(&t, &x, &y)
		if t == 1 {
			tree.update(x-1, tree.get(x-1) + y)
		} else if t == 2 {
			tree.update(x-1, tree.get(x-1) - y)
		} else {
			fmt.Println(tree.max())
		}
	}
}
0