結果

問題 No.2242 Cities and Teleporters
ユーザー shotoyooshotoyoo
提出日時 2023-03-10 22:33:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,806 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 81,544 KB
実行使用メモリ 161,552 KB
最終ジャッジ日時 2023-10-18 08:16:26
合計ジャッジ時間 28,599 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
56,012 KB
testcase_01 AC 43 ms
56,012 KB
testcase_02 WA -
testcase_03 AC 43 ms
56,012 KB
testcase_04 WA -
testcase_05 AC 1,419 ms
161,552 KB
testcase_06 AC 967 ms
153,908 KB
testcase_07 AC 1,266 ms
159,920 KB
testcase_08 AC 1,228 ms
159,896 KB
testcase_09 AC 1,256 ms
159,904 KB
testcase_10 AC 721 ms
159,924 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

n = int(input())
h = list(map(int, input().split()))
t = LI()
index = list(range(n))
index.sort(key=lambda i: h[i])
pos = [0]*n
for i in range(n):
    pos[index[i]] = i
h = [h[ind] for ind in index]
t = [t[ind] for ind in index]
vs = [0]*n
ns = [-1]*n
from bisect import bisect_right as br
for i in range(n):
    v = br(h, t[i])
    vs[i] = v
    ns[i] = v-1
cum = ns[:]
for i in range(1,n):
    cum[i] = max(cum[i], cum[i-1])
dns = [ns]
for i in range(30):
    p = dns[-1]
    l = [-1]*n
    for j in range(n):
        if p[j]==-1:
            l[j] = -1
        else:
            l[j] = max(p[j], p[p[j]])
    dns.append(l)
q = II()
for _ in range(q):
    a,b = LI()
    a -= 1
    b -= 1
#     print(a,b,pos[a],pos[b])
    a = pos[a]
    b = pos[b]
    res = 1
    cur = ns[a]
    for i in range(30)[::-1]:
        if dns[i][cur]>=b:
            continue
        elif dns[i][cur]!=-1:
            res += (1<<i)
            cur = dns[i][cur]
        else:
            res = -1
            break
    else:
#         print(a,cur,b)
        if dns[0][cur]>=b:
            res += 1
            if ns[a]>=b:
                res = 1
        else:
            res = -1
    print(res)
0