結果

問題 No.649 ここでちょっとQK!
ユーザー magurogumamaguroguma
提出日時 2020-01-03 19:55:21
言語 Go
(1.22.1)
結果
AC  
実行時間 335 ms / 3,000 ms
コード長 7,422 bytes
コンパイル時間 10,957 ms
コンパイル使用メモリ 198,848 KB
実行使用メモリ 36,944 KB
最終ジャッジ日時 2023-08-14 19:22:54
合計ジャッジ時間 16,796 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,480 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 335 ms
22,788 KB
testcase_04 AC 215 ms
36,944 KB
testcase_05 AC 203 ms
36,848 KB
testcase_06 AC 129 ms
24,876 KB
testcase_07 AC 2 ms
5,476 KB
testcase_08 AC 1 ms
5,476 KB
testcase_09 AC 2 ms
5,480 KB
testcase_10 AC 2 ms
5,480 KB
testcase_11 AC 1 ms
5,476 KB
testcase_12 AC 135 ms
20,148 KB
testcase_13 AC 133 ms
19,976 KB
testcase_14 AC 131 ms
20,144 KB
testcase_15 AC 135 ms
22,568 KB
testcase_16 AC 130 ms
22,608 KB
testcase_17 AC 136 ms
22,716 KB
testcase_18 AC 166 ms
29,000 KB
testcase_19 AC 190 ms
30,552 KB
testcase_20 AC 193 ms
30,332 KB
testcase_21 AC 206 ms
31,300 KB
testcase_22 AC 213 ms
34,868 KB
testcase_23 AC 233 ms
35,652 KB
testcase_24 AC 238 ms
34,520 KB
testcase_25 AC 252 ms
35,304 KB
testcase_26 AC 265 ms
36,264 KB
testcase_27 AC 2 ms
5,492 KB
testcase_28 AC 3 ms
5,492 KB
testcase_29 AC 2 ms
5,496 KB
testcase_30 AC 117 ms
20,572 KB
testcase_31 AC 113 ms
20,568 KB
testcase_32 AC 2 ms
5,476 KB
testcase_33 AC 1 ms
5,476 KB
testcase_34 AC 2 ms
5,480 KB
testcase_35 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"errors"
	"fmt"
	"io"
	"math"
	"os"
	"sort"
	"strconv"
)

/*********** I/O ***********/

var (
	// ReadString returns a WORD string.
	ReadString func() string
	stdout     *bufio.Writer
)

func init() {
	ReadString = newReadString(os.Stdin)
	stdout = bufio.NewWriter(os.Stdout)
}

func newReadString(ior io.Reader) func() string {
	r := bufio.NewScanner(ior)
	// r.Buffer(make([]byte, 1024), int(1e+11)) // for AtCoder
	r.Buffer(make([]byte, 1024), int(1e+9)) // for Codeforces
	// Split sets the split function for the Scanner. The default split function is ScanLines.
	// Split panics if it is called after scanning has started.
	r.Split(bufio.ScanWords)

	return func() string {
		if !r.Scan() {
			panic("Scan failed")
		}
		return r.Text()
	}
}

// ReadInt returns an integer.
func ReadInt() int {
	return int(readInt64())
}
func ReadInt2() (int, int) {
	return int(readInt64()), int(readInt64())
}
func ReadInt3() (int, int, int) {
	return int(readInt64()), int(readInt64()), int(readInt64())
}
func ReadInt4() (int, int, int, int) {
	return int(readInt64()), int(readInt64()), int(readInt64()), int(readInt64())
}

// ReadInt64 returns as integer as int64.
func ReadInt64() int64 {
	return readInt64()
}
func ReadInt64_2() (int64, int64) {
	return readInt64(), readInt64()
}
func ReadInt64_3() (int64, int64, int64) {
	return readInt64(), readInt64(), readInt64()
}
func ReadInt64_4() (int64, int64, int64, int64) {
	return readInt64(), readInt64(), readInt64(), readInt64()
}

func readInt64() int64 {
	i, err := strconv.ParseInt(ReadString(), 0, 64)
	if err != nil {
		panic(err.Error())
	}
	return i
}

// ReadIntSlice returns an integer slice that has n integers.
func ReadIntSlice(n int) []int {
	b := make([]int, n)
	for i := 0; i < n; i++ {
		b[i] = ReadInt()
	}
	return b
}

// ReadInt64Slice returns as int64 slice that has n integers.
func ReadInt64Slice(n int) []int64 {
	b := make([]int64, n)
	for i := 0; i < n; i++ {
		b[i] = ReadInt64()
	}
	return b
}

// ReadFloat64 returns an float64.
func ReadFloat64() float64 {
	return float64(readFloat64())
}

func readFloat64() float64 {
	f, err := strconv.ParseFloat(ReadString(), 64)
	if err != nil {
		panic(err.Error())
	}
	return f
}

// ReadFloatSlice returns an float64 slice that has n float64.
func ReadFloat64Slice(n int) []float64 {
	b := make([]float64, n)
	for i := 0; i < n; i++ {
		b[i] = ReadFloat64()
	}
	return b
}

// ReadRuneSlice returns a rune slice.
func ReadRuneSlice() []rune {
	return []rune(ReadString())
}

/*********** Debugging ***********/

// ZeroPaddingRuneSlice returns binary expressions of integer n with zero padding.
// For debugging use.
func ZeroPaddingRuneSlice(n, digitsNum int) []rune {
	sn := fmt.Sprintf("%b", n)

	residualLength := digitsNum - len(sn)
	if residualLength <= 0 {
		return []rune(sn)
	}

	zeros := make([]rune, residualLength)
	for i := 0; i < len(zeros); i++ {
		zeros[i] = '0'
	}

	res := []rune{}
	res = append(res, zeros...)
	res = append(res, []rune(sn)...)

	return res
}

// Strtoi is a wrapper of strconv.Atoi().
// If strconv.Atoi() returns an error, Strtoi calls panic.
func Strtoi(s string) int {
	if i, err := strconv.Atoi(s); err != nil {
		panic(errors.New("[argument error]: Strtoi only accepts integer string"))
	} else {
		return i
	}
}

// PrintIntsLine returns integers string delimited by a space.
func PrintIntsLine(A ...int) string {
	res := []rune{}

	for i := 0; i < len(A); i++ {
		str := strconv.Itoa(A[i])
		res = append(res, []rune(str)...)

		if i != len(A)-1 {
			res = append(res, ' ')
		}
	}

	return string(res)
}

// PrintIntsLine returns integers string delimited by a space.
func PrintInts64Line(A ...int64) string {
	res := []rune{}

	for i := 0; i < len(A); i++ {
		str := strconv.FormatInt(A[i], 10) // 64bit int version
		res = append(res, []rune(str)...)

		if i != len(A)-1 {
			res = append(res, ' ')
		}
	}

	return string(res)
}

// PrintDebug is wrapper of fmt.Fprintf(os.Stderr, format, a...)
func PrintDebug(format string, a ...interface{}) {
	fmt.Fprintf(os.Stderr, format, a...)
}

/********** FAU standard libraries **********/

//fmt.Sprintf("%b\n", 255) 	// binary expression

/********** I/O usage **********/

//str := ReadString()
//i := ReadInt()
//X := ReadIntSlice(n)
//S := ReadRuneSlice()
//a := ReadFloat64()
//A := ReadFloat64Slice(n)

//str := ZeroPaddingRuneSlice(num, 32)
//str := PrintIntsLine(X...)

/*******************************************************************/

const MOD = 1000000000 + 7
const ALPHABET_NUM = 26
const INF_INT64 = math.MaxInt64
const INF_BIT60 = 1 << 60
const INF_INT32 = math.MaxInt32
const INF_BIT30 = 1 << 30

var q, k int
var queries [][]int

func main() {
	q, k = ReadInt2()

	for i := 0; i < q; i++ {
		c := ReadInt()
		if c == 1 {
			v := ReadInt()
			queries = append(queries, []int{c, v})
		} else {
			queries = append(queries, []int{c})
		}
	}

	elems := []int{}
	for i := 0; i < q; i++ {
		if len(queries[i]) == 1 {
			continue
		}

		elems = append(elems, queries[i][1])
	}

	_, otop, ptoo := ZaAtsu1Dim(elems, 1)

	bit := NewBITSet(200000 + 5)
	for i := 0; i < q; i++ {
		que := queries[i]
		if que[0] == 1 {
			v := que[1]
			vv := otop[v]
			bit.Insert(vv, 1)
		} else {
			if bit.Count(bit.n) < k {
				fmt.Println(-1)
			} else {
				v := bit.Kth(k)
				vv := ptoo[v]
				fmt.Println(vv)
				bit.Delete(v, 1)
			}
		}
	}
}

// Public methods
// bit := NewBITSet(200000 + 5)
// c := bit.Count(b.n)
// bit.Insert(val, 1)
// bit.Delete(val, 1)
// ans := bit.Kth(k)

type BITSet struct {
	bit     []int
	n       int
	minPow2 int
}

// n(>=1) is maximum integer for the set.
func NewBITSet(n int) *BITSet {
	newBit := new(BITSet)

	newBit.bit = make([]int, n+1)
	newBit.n = n

	newBit.minPow2 = 1
	for {
		if (newBit.minPow2 << 1) > n {
			break
		}
		newBit.minPow2 <<= 1
	}

	return newBit
}

// Count returns number of elements less or equal than e in the set.
// b.Count(b.n) returns total number of elements in the set.
// O(logN)
func (b *BITSet) Count(e int) int {
	s := 0

	for e > 0 {
		s += b.bit[e]
		e -= e & (-e)
	}

	return s
}

// Insert e(1<=e<=n) for num(>= 1) times.
func (b *BITSet) Insert(e, num int) {
	for e <= b.n {
		b.bit[e] += num
		e += e & (-e)
	}
}

// Delete e(1<=e<=n) for num(>= 1) times.
func (b *BITSet) Delete(e, num int) {
	num *= -1
	for e <= b.n {
		b.bit[e] += num
		e += e & (-e)
	}
}

// Kth returns kth element in the set
func (b *BITSet) Kth(kth int) int {
	if kth <= 0 {
		return 0
	}

	x := 0
	for k := b.minPow2; k > 0; k /= 2 {
		if x+k <= b.n && b.bit[x+k] < kth {
			kth -= b.bit[x+k]
			x += k
		}
	}

	return x + 1
}

// ---

// ZaAtsu1Dim returns 3 values.
// pressed: pressed slice of the original slice
// orgToPress: map for translating original value to pressed value
// pressToOrg: reverse resolution of orgToPress
// O(nlogn)
func ZaAtsu1Dim(org []int, initVal int) (pressed []int, orgToPress, pressToOrg map[int]int) {
	pressed = make([]int, len(org))
	copy(pressed, org)
	sort.Sort(sort.IntSlice(pressed))

	orgToPress = make(map[int]int)
	for i := 0; i < len(org); i++ {
		if i == 0 {
			orgToPress[pressed[0]] = initVal
			continue
		}

		if pressed[i-1] != pressed[i] {
			initVal++
			orgToPress[pressed[i]] = initVal
		}
	}

	for i := 0; i < len(org); i++ {
		pressed[i] = orgToPress[org[i]]
	}

	pressToOrg = make(map[int]int)
	for k, v := range orgToPress {
		pressToOrg[v] = k
	}

	return
}
0