結果
問題 | No.1705 Mode of long array |
ユーザー | 小野寺健 |
提出日時 | 2021-12-17 11:56:28 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 293 ms / 3,000 ms |
コード長 | 1,419 bytes |
コンパイル時間 | 15,525 ms |
コンパイル使用メモリ | 221,300 KB |
実行使用メモリ | 12,304 KB |
最終ジャッジ日時 | 2024-09-14 12:45:30 |
合計ジャッジ時間 | 26,495 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 11 ms
5,376 KB |
testcase_07 | AC | 13 ms
5,376 KB |
testcase_08 | AC | 38 ms
5,376 KB |
testcase_09 | AC | 12 ms
5,376 KB |
testcase_10 | AC | 11 ms
5,376 KB |
testcase_11 | AC | 12 ms
5,376 KB |
testcase_12 | AC | 11 ms
5,376 KB |
testcase_13 | AC | 261 ms
12,044 KB |
testcase_14 | AC | 145 ms
7,680 KB |
testcase_15 | AC | 124 ms
5,760 KB |
testcase_16 | AC | 150 ms
5,888 KB |
testcase_17 | AC | 112 ms
5,760 KB |
testcase_18 | AC | 87 ms
5,376 KB |
testcase_19 | AC | 168 ms
6,016 KB |
testcase_20 | AC | 107 ms
6,016 KB |
testcase_21 | AC | 167 ms
11,136 KB |
testcase_22 | AC | 267 ms
11,520 KB |
testcase_23 | AC | 123 ms
5,760 KB |
testcase_24 | AC | 121 ms
5,760 KB |
testcase_25 | AC | 124 ms
5,760 KB |
testcase_26 | AC | 123 ms
5,760 KB |
testcase_27 | AC | 128 ms
5,760 KB |
testcase_28 | AC | 125 ms
5,632 KB |
testcase_29 | AC | 124 ms
5,760 KB |
testcase_30 | AC | 124 ms
5,760 KB |
testcase_31 | AC | 127 ms
5,760 KB |
testcase_32 | AC | 122 ms
6,016 KB |
testcase_33 | AC | 276 ms
11,904 KB |
testcase_34 | AC | 273 ms
11,520 KB |
testcase_35 | AC | 274 ms
12,288 KB |
testcase_36 | AC | 271 ms
11,904 KB |
testcase_37 | AC | 269 ms
12,288 KB |
testcase_38 | AC | 275 ms
12,304 KB |
testcase_39 | AC | 272 ms
12,032 KB |
testcase_40 | AC | 273 ms
11,520 KB |
testcase_41 | AC | 293 ms
11,520 KB |
testcase_42 | AC | 279 ms
11,520 KB |
testcase_43 | AC | 211 ms
11,264 KB |
testcase_44 | AC | 204 ms
10,880 KB |
testcase_45 | AC | 203 ms
11,264 KB |
testcase_46 | AC | 203 ms
11,264 KB |
testcase_47 | AC | 202 ms
11,264 KB |
testcase_48 | AC | 202 ms
11,264 KB |
testcase_49 | AC | 260 ms
11,520 KB |
testcase_50 | AC | 268 ms
11,520 KB |
testcase_51 | AC | 255 ms
11,520 KB |
testcase_52 | AC | 255 ms
11,520 KB |
testcase_53 | AC | 257 ms
11,520 KB |
ソースコード
package main import ( "fmt" "bufio" "os" ) 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() { r := bufio.NewReader(os.Stdin) w := bufio.NewWriter(os.Stdout) defer w.Flush() var N, M int fmt.Fscan(r, &N, &M) var tree SegmentTree tree.new(M) for i := 0; i < M; i++ { var a int fmt.Fscan(r, &a) tree.update(i, a) } var Q int fmt.Fscan(r, &Q) for i := 0; i < Q; i++ { var t, x, y int fmt.Fscan(r, &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.Fprintln(w, tree.max()) } } }