結果

問題 No.919 You Are A Project Manager
ユーザー ccppjsrbccppjsrb
提出日時 2019-10-26 21:43:34
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 7,319 bytes
コンパイル時間 12,855 ms
コンパイル使用メモリ 211,664 KB
実行使用メモリ 10,012 KB
最終ジャッジ日時 2023-10-12 20:16:36
合計ジャッジ時間 21,085 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
10,012 KB
testcase_01 AC 2 ms
4,372 KB
testcase_02 AC 1 ms
4,372 KB
testcase_03 AC 1 ms
4,368 KB
testcase_04 AC 28 ms
5,496 KB
testcase_05 AC 32 ms
5,504 KB
testcase_06 AC 3 ms
4,372 KB
testcase_07 AC 74 ms
5,540 KB
testcase_08 AC 13 ms
4,372 KB
testcase_09 AC 9 ms
4,372 KB
testcase_10 AC 17 ms
5,492 KB
testcase_11 WA -
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 22 ms
5,496 KB
testcase_14 WA -
testcase_15 AC 6 ms
4,376 KB
testcase_16 AC 33 ms
5,496 KB
testcase_17 AC 226 ms
10,008 KB
testcase_18 AC 212 ms
10,008 KB
testcase_19 AC 203 ms
10,008 KB
testcase_20 WA -
testcase_21 AC 210 ms
10,008 KB
testcase_22 WA -
testcase_23 AC 83 ms
5,540 KB
testcase_24 AC 91 ms
5,552 KB
testcase_25 WA -
testcase_26 AC 206 ms
7,940 KB
testcase_27 AC 174 ms
7,888 KB
testcase_28 AC 243 ms
10,012 KB
testcase_29 AC 241 ms
10,008 KB
testcase_30 AC 242 ms
10,008 KB
testcase_31 AC 239 ms
10,012 KB
testcase_32 WA -
testcase_33 AC 95 ms
7,828 KB
testcase_34 AC 96 ms
7,864 KB
testcase_35 AC 248 ms
10,012 KB
testcase_36 AC 245 ms
10,012 KB
testcase_37 AC 248 ms
10,012 KB
testcase_38 AC 241 ms
10,012 KB
testcase_39 AC 2 ms
4,376 KB
testcase_40 WA -
testcase_41 AC 3 ms
4,372 KB
testcase_42 AC 3 ms
4,504 KB
testcase_43 AC 4 ms
4,376 KB
testcase_44 AC 9 ms
4,372 KB
testcase_45 AC 3 ms
4,372 KB
testcase_46 AC 7 ms
4,372 KB
testcase_47 AC 85 ms
5,536 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 84 ms
5,544 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 77 ms
5,536 KB
testcase_54 WA -
testcase_55 AC 1 ms
4,372 KB
testcase_56 AC 1 ms
4,368 KB
testcase_57 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
)

func getScanner(fp *os.File) *bufio.Scanner {
	scanner := bufio.NewScanner(fp)
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 500001), 500000)
	return scanner
}

func getNextString(scanner *bufio.Scanner) string {
	scanner.Scan()
	return scanner.Text()
}

func getNextInt(scanner *bufio.Scanner) int {
	i, _ := strconv.Atoi(getNextString(scanner))
	return i
}

func getNextInt64(scanner *bufio.Scanner) int64 {
	i, _ := strconv.ParseInt(getNextString(scanner), 10, 64)
	return i
}

func getNextUint64(scanner *bufio.Scanner) uint64 {
	i, _ := strconv.ParseUint(getNextString(scanner), 10, 64)
	return i
}

func getNextFloat64(scanner *bufio.Scanner) float64 {
	i, _ := strconv.ParseFloat(getNextString(scanner), 64)
	return i
}

func main() {
	fp := os.Stdin
	wfp := os.Stdout

	if len(os.Args) > 1 {
		fp, _ = os.Open(os.Args[1])
		if len(os.Args) > 2 {
			wfp, _ = os.Create(os.Args[2])
		}
	}

	scanner := getScanner(fp)
	writer := bufio.NewWriter(wfp)

	n := getNextInt(scanner)
	aa := make([]alias, n)
	for i := 0; i < n; i++ {
		aa[i] = alias(getNextInt64(scanner) + int64(1e9))
	}
	wl := WaveletKeanuReeves{}
	wl.init(aa)

	var ans alias

	for k := 1; k <= n; k++ {
		sum := make([]alias, n/k)
		for s := 0; s+k <= n; s += k {
			i := s / k
			sum[i] = wl.quantile(s, s+k, k/2+1) - alias(1e9)
			if s == 0 {
				continue
			}
			sum[i] += sum[i-1]
		}
		for i := 1; i < n/k; i++ {
			if sum[i] < sum[i-1] {
				sum[i] = sum[i-1]
			}
		}
		if ans < sum[n/k-1]*alias(k) {
			ans = sum[n/k-1] * alias(k)
		}
		for t := n; t-k >= 0; t -= k {
			i := t/k - 1
			sum[i] = wl.quantile(t-k, t, k/2+1) - alias(1e9)
			if i+1 < n/k {
				sum[i] += sum[i+1]
			}
			if i-1 >= 0 {
				if ans < (sum[i]+sum[i-1])*alias(k) {
					ans = (sum[i] + sum[i-1]) * alias(k)
				}
			} else {
				if ans < sum[i]*alias(k) {
					ans = sum[i] * alias(k)
				}
			}
		}
	}

	fmt.Fprintln(writer, ans)

	writer.Flush()
}

type alias int64

// WaveletKeanuReeves ...
type WaveletKeanuReeves struct {
	bits, n        int
	tree           [][]int
	data, topIndex []int
}

func (wl *WaveletKeanuReeves) init(raw []alias) {
	n := len(raw)
	wl.bits = 62
	wl.tree = make([][]int, wl.bits, wl.bits)
	wl.data = make([]int, wl.bits*(n+1), wl.bits*(n+1))

	buf := make([]int, n, n)
	sorted := make([]int, n, n)
	wl.topIndex = make([]int, n, n)
	for i := 0; i < n; i++ {
		sorted[i] = i
		wl.topIndex[i] = -1
	}

	for i := wl.bits - 1; i >= 0; i-- {
		wl.tree[i] = wl.data[i*(n+1) : (i+1)*(n+1)]
		bi := 0
		si := 0
		for ii := 0; ii < n; ii++ {
			wl.tree[i][ii+1] = int(raw[sorted[ii]] >> uint(i) & 1)
			if wl.tree[i][ii+1] == 0 {
				sorted[si] = sorted[ii]
				si++
			} else {
				buf[bi] = sorted[ii]
				bi++
			}
			wl.tree[i][ii+1] += wl.tree[i][ii]
		}
		for ii := 0; ii < bi; ii++ {
			sorted[si+ii] = buf[ii]
		}
	}

	wl.n = n
}

func (wl *WaveletKeanuReeves) count0(h, i int) int {
	return i - wl.tree[h][i]
}

func (wl *WaveletKeanuReeves) count1(h, i int) int {
	return wl.tree[h][i]
}

func (wl *WaveletKeanuReeves) next(h, i int) int {
	bit := wl.tree[h][i+1] - wl.tree[h][i]
	if bit == 0 {
		return wl.count0(h, i)
	}
	index := wl.count0(h, wl.n) + wl.tree[h][i]
	return index
}

func (wl *WaveletKeanuReeves) nextrange0(h, l, r int) (int, int) {
	return wl.count0(h, l), wl.count0(h, r)
}

func (wl *WaveletKeanuReeves) nextrange1(h, l, r int) (int, int) {
	start1 := wl.count0(h, wl.n)
	return start1 + wl.count1(h, l), start1 + wl.count1(h, r)
}

func (wl *WaveletKeanuReeves) access(at int) alias {
	var ans alias

	for i := wl.bits - 1; i >= 0; i-- {
		bit := alias(wl.tree[i][at+1] - wl.tree[i][at])
		ans |= bit << uint(i)
		at = wl.next(i, at)
	}

	return ans
}

func (wl *WaveletKeanuReeves) rank(at int, c alias) int {
	l := 0
	r := at
	for i := wl.bits - 1; i >= 0 && l < r; i-- {
		bit := int(c >> uint(i) & 1)
		if bit == 0 {
			l, r = wl.nextrange0(i, l, r)
			continue
		}
		l, r = wl.nextrange1(i, l, r)
	}

	return r - l
}

func (wl *WaveletKeanuReeves) rank0(h, at int) int {
	l := 0
	r := wl.n
	for l < r {
		m := (l + r) >> 1
		if wl.count0(h, m) < at+1 {
			l = m + 1
			continue
		}
		r = m
	}
	return l - 1
}

func (wl *WaveletKeanuReeves) rank1(h, at int) int {
	l := 0
	r := wl.n
	for l < r {
		m := (l + r) >> 1
		if wl.count1(h, m) < at+1 {
			l = m + 1
			continue
		}
		r = m
	}
	return l - 1
}

func (wl *WaveletKeanuReeves) gotop(h, index int) int {
	for i := h; i < wl.bits; i++ {
		index1 := wl.count0(i, wl.n)
		if index < index1 {
			index = wl.rank0(i, index)
			continue
		}
		index = wl.rank1(i, index-index1)
	}
	return index
}

func (wl *WaveletKeanuReeves) gettopindex(index int) int {
	if wl.topIndex[index] != -1 {
		return wl.topIndex[index]
	}
	wl.topIndex[index] = wl.gotop(0, index)
	return wl.topIndex[index]
}

func (wl *WaveletKeanuReeves) selects(at int, c alias) int {
	l := 0
	r := wl.n
	for i := wl.bits - 1; i >= 0 && l < r; i-- {
		bit := int(c >> uint(i) & 1)
		if bit == 0 {
			l, r = wl.nextrange0(i, l, r)
			continue
		}
		l, r = wl.nextrange1(i, l, r)
	}
	return wl.gettopindex(l + at)
}

func (wl *WaveletKeanuReeves) getbottomrange(l, r int, c alias) (int, int) {
	for i := wl.bits - 1; i >= 0; i-- {
		bit := int(c >> uint(i) & 1)
		if bit == 0 {
			l, r = wl.nextrange0(i, l, r)
			continue
		}
		l, r = wl.nextrange1(i, l, r)
	}
	return l, r
}

func (wl *WaveletKeanuReeves) quantile(l, r, rank int) alias {
	if rank > r-l {
		return -1
	}
	var ans alias
	for i := wl.bits - 1; i >= 0; i-- {
		c1 := wl.count1(i, r) - wl.count1(i, l)
		if c1 >= rank {
			ans |= 1 << uint(i)
			l, r = wl.nextrange1(i, l, r)
			continue
		}
		l, r = wl.nextrange0(i, l, r)
		rank -= c1
	}

	return ans
}

func (wl *WaveletKeanuReeves) rangerankless(l, r int, c alias) int {
	ans := 0
	for i := wl.bits - 1; i >= 0; i-- {
		bit := int(c >> uint(i) & 1)
		if bit == 0 {
			l, r = wl.nextrange0(i, l, r)
			continue
		}
		ans += wl.count0(i, r) - wl.count0(i, l)
		l, r = wl.nextrange1(i, l, r)
	}

	return ans
}

func (wl *WaveletKeanuReeves) rangerankmore(l, r int, c alias) int {
	ans := 0
	for i := wl.bits - 1; i >= 0; i-- {
		bit := int(c >> uint(i) & 1)
		if bit == 1 {
			l, r = wl.nextrange1(i, l, r)
			continue
		}
		ans += wl.count1(i, r) - wl.count1(i, l)
		l, r = wl.nextrange0(i, l, r)
	}

	return ans
}

func (wl *WaveletKeanuReeves) rangefreq(l, r int, min, max alias) int {
	return wl.rangerankless(l, r, max) - wl.rangerankless(l, r, min)
}

func (wl *WaveletKeanuReeves) prevless(at int, c alias) int {
	l := 0
	r := at
	for l < r {
		m := (l + r) >> 1
		if wl.rangerankless(m, at, c) == 0 {
			r = m
			continue
		}
		l = m + 1
	}

	return l - 1
}

func (wl *WaveletKeanuReeves) prevmore(at int, c alias) int {
	l := 0
	r := at
	for l < r {
		m := (l + r) >> 1
		if wl.rangerankmore(m, at, c) == 0 {
			r = m
			continue
		}
		l = m + 1
	}

	return l - 1
}

func (wl *WaveletKeanuReeves) nextless(at int, c alias) int {
	l := at + 1
	r := wl.n
	for l < r {
		m := (l + r) >> 1
		if wl.rangerankless(at+1, m+1, c) == 0 {
			l = m + 1
			continue
		}
		r = m
	}

	return r
}

func (wl *WaveletKeanuReeves) nextmore(at int, c alias) int {
	l := at + 1
	r := wl.n
	for l < r {
		m := (l + r) >> 1
		if wl.rangerankmore(at+1, m+1, c) == 0 {
			l = m + 1
			continue
		}
		r = m
	}

	return r
}
0