結果

問題 No.2242 Cities and Teleporters
ユーザー shotoyooshotoyoo
提出日時 2023-03-10 22:58:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,903 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 81,696 KB
実行使用メモリ 163,080 KB
最終ジャッジ日時 2023-10-18 08:41:18
合計ジャッジ時間 22,796 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,072 KB
testcase_01 AC 42 ms
56,072 KB
testcase_02 AC 43 ms
56,072 KB
testcase_03 AC 43 ms
56,072 KB
testcase_04 WA -
testcase_05 AC 989 ms
163,080 KB
testcase_06 AC 787 ms
154,048 KB
testcase_07 AC 1,035 ms
160,008 KB
testcase_08 AC 1,155 ms
159,976 KB
testcase_09 AC 1,140 ms
159,980 KB
testcase_10 AC 683 ms
160,004 KB
testcase_11 AC 857 ms
160,340 KB
testcase_12 AC 863 ms
160,296 KB
testcase_13 AC 898 ms
160,188 KB
testcase_14 AC 1,022 ms
160,028 KB
testcase_15 AC 892 ms
160,056 KB
testcase_16 AC 982 ms
159,952 KB
testcase_17 AC 1,259 ms
159,940 KB
testcase_18 AC 746 ms
159,252 KB
testcase_19 AC 700 ms
159,120 KB
testcase_20 AC 967 ms
158,252 KB
testcase_21 AC 882 ms
157,344 KB
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 = [cum]
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]
    if cur==-1 or dns[-1][cur]==-1 or dns[-1][cur]<b:
        res = -1
    elif cur>=b:
        res = 1
    else:
        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:
            if dns[0][cur]>=b:
                res += 1
            else:
                res = -1
    print(res)
0