結果

問題 No.1705 Mode of long array
ユーザー 小野寺健小野寺健
提出日時 2021-12-17 10:09:42
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 1,290 bytes
コンパイル時間 13,984 ms
コンパイル使用メモリ 234,868 KB
実行使用メモリ 16,328 KB
最終ジャッジ日時 2024-09-14 10:31:38
合計ジャッジ時間 64,571 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 19 ms
5,376 KB
testcase_04 AC 16 ms
5,376 KB
testcase_05 AC 22 ms
5,376 KB
testcase_06 AC 68 ms
5,376 KB
testcase_07 AC 84 ms
5,376 KB
testcase_08 AC 82 ms
5,376 KB
testcase_09 AC 73 ms
5,376 KB
testcase_10 AC 67 ms
5,376 KB
testcase_11 AC 74 ms
5,376 KB
testcase_12 AC 72 ms
5,376 KB
testcase_13 AC 2,374 ms
9,728 KB
testcase_14 AC 1,658 ms
8,704 KB
testcase_15 AC 1,473 ms
7,552 KB
testcase_16 AC 1,826 ms
8,192 KB
testcase_17 AC 1,308 ms
6,528 KB
testcase_18 AC 1,083 ms
6,016 KB
testcase_19 AC 2,064 ms
9,216 KB
testcase_20 AC 1,300 ms
7,424 KB
testcase_21 AC 1,879 ms
8,960 KB
testcase_22 AC 2,713 ms
12,160 KB
testcase_23 AC 1,952 ms
7,168 KB
testcase_24 AC 1,977 ms
7,168 KB
testcase_25 AC 1,990 ms
7,168 KB
testcase_26 AC 1,974 ms
7,168 KB
testcase_27 AC 1,951 ms
7,168 KB
testcase_28 AC 1,992 ms
7,168 KB
testcase_29 AC 1,970 ms
7,168 KB
testcase_30 AC 1,984 ms
7,168 KB
testcase_31 AC 1,970 ms
7,168 KB
testcase_32 AC 1,976 ms
7,168 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 AC 2,328 ms
16,324 KB
testcase_44 AC 2,310 ms
16,328 KB
testcase_45 AC 2,289 ms
16,312 KB
testcase_46 AC 2,280 ms
16,324 KB
testcase_47 AC 2,299 ms
16,324 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

type SegmentTree struct {
	n int
	dat [][2]int
}

func (this *SegmentTree) new(n int) {
	this.n = 1
	for this.n < n {
		this.n *= 2
	}
	this.dat = make([][2]int, 2*this.n-1)
	for _, d := range this.dat {
		d[0], d[1] = -1, -1
	}
}

func (this *SegmentTree) update(k int, a int) {
	i := k
	k += this.n - 1
	this.dat[k][0] = a
	this.dat[k][1] = i
	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][1] + 1
}

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

func Max(a [2]int, b [2]int) [2]int{
	if a[0] > b[0] {
		return a
	} else if a[0] < b[0] {
		return b
	} else if a[1] >= b[1] {
		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)
	q := make([][3]int, Q, Q)
	for i := 0; i < Q; i++ {
		fmt.Scan(&q[i][0], &q[i][1], &q[i][2])
	}

	for _, a := range q {
		var (
			t, x, y  = a[0], a[1], a[2]
		)
		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