結果

問題 No.2735 Demarcation
ユーザー kusirakusirakusirakusira
提出日時 2024-04-09 23:18:03
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,946 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 270,908 KB
最終ジャッジ日時 2024-10-11 11:45:04
合計ジャッジ時間 19,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 366 ms
256,292 KB
testcase_05 AC 459 ms
93,440 KB
testcase_06 AC 505 ms
248,716 KB
testcase_07 AC 1,310 ms
262,812 KB
testcase_08 AC 888 ms
261,896 KB
testcase_09 AC 596 ms
148,460 KB
testcase_10 AC 649 ms
193,916 KB
testcase_11 AC 173 ms
119,936 KB
testcase_12 AC 317 ms
87,040 KB
testcase_13 AC 537 ms
101,632 KB
testcase_14 TLE -
testcase_15 AC 1,201 ms
93,440 KB
testcase_16 AC 681 ms
249,596 KB
testcase_17 AC 1,068 ms
180,252 KB
testcase_18 AC 485 ms
119,808 KB
testcase_19 AC 1,174 ms
262,312 KB
testcase_20 TLE -
testcase_21 AC 467 ms
234,748 KB
testcase_22 AC 365 ms
268,920 KB
testcase_23 AC 179 ms
127,704 KB
testcase_24 AC 251 ms
189,848 KB
testcase_25 AC 329 ms
231,008 KB
testcase_26 AC 291 ms
215,356 KB
testcase_27 AC 325 ms
217,624 KB
testcase_28 AC 430 ms
270,904 KB
testcase_29 AC 414 ms
270,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 入力
n = int(input())
X = list(map(int,input().split()))
q = int(input())

INF = 3*10**18

# 尺取り法の関数
def add(x, cnt):
    if(x not in cnt):
        cnt[x] = 0
    cnt[x] += 1

def remove(x, cnt):
    cnt[x] -= 1
    if(cnt[x] == 0):
        del cnt[x]

def judge(x, cnt, k):
    add(x, cnt)
    flag = len(cnt) <= k
    remove(x, cnt)
    return flag

def dp(k):
    if(k == 0): return 0
    l = 0
    r = 0
    # 遷移先
    to = [n] * n
    # 要素数カウント
    cnt = {}

    ans = -1
    # 尺取り法
    while r < n:
        if(judge(A[r], cnt, k)):
            add(A[r], cnt)
            r += 1
        else:
            remove(A[l], cnt)
            l += 1
        to[l] = r

    dp = [0] * (n+1)
    dp[0] = 1
    dp[1] = -1

    for i in range(n):
        # 累積
        if(i != 0):
            dp[i] += dp[i-1]
            if(dp[i] > s):
                return INF
        # 遷移
        dp[i+1] += dp[i]
        if(to[i]+1 < n+1):
            dp[to[i]+1] -= dp[i]

    ans = dp[-1] + dp[-2]
    return ans

# 同じ要素が隣り合っているものの個数累積和
CX = [0]
for i in range(n-1):
    CX.append(CX[-1] + int(X[i] == X[i+1]))
CX.append(CX[-1])

# べき乗の前計算
POW = [1]
for i in range(62):
    POW.append(POW[-1]*2)

for _ in range(q):
    l,r,s = map(int,input().split())
    l -= 1
    r -= 1

    if(r-l+1 >= 90):

        c = CX[r+1]-CX[l+1]
        if(c >= 62):
            print(0)
            continue
        # f(1)の値
        f1 = POW[c]
        if(f1 <= s):
            print(1)
        else:
            print(0)
    else:
        A = X[l:r+1]
        # めぐる式二分探索
        ok = 0
        ng = 70
        n = len(A)
        while abs(ok-ng)>1:
            mid = (ok+ng)//2
            if(dp(mid)<=s):
                ok = mid
            else:
                ng = mid
        if(ok >= 65):
            print(-1)
        else:
            print(ok)
0