結果

問題 No.2710 How many more?
ユーザー macchamaccha
提出日時 2024-03-31 15:25:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,414 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 62,864 KB
最終ジャッジ日時 2024-10-01 04:35:12
合計ジャッジ時間 16,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 1,061 ms
40,672 KB
testcase_03 AC 695 ms
42,060 KB
testcase_04 AC 649 ms
59,936 KB
testcase_05 AC 441 ms
35,392 KB
testcase_06 AC 520 ms
49,532 KB
testcase_07 AC 419 ms
13,740 KB
testcase_08 AC 340 ms
21,152 KB
testcase_09 AC 915 ms
47,812 KB
testcase_10 AC 538 ms
30,412 KB
testcase_11 AC 829 ms
27,236 KB
testcase_12 AC 1,226 ms
59,056 KB
testcase_13 AC 1,321 ms
62,864 KB
testcase_14 AC 1,350 ms
62,692 KB
testcase_15 AC 1,365 ms
62,688 KB
testcase_16 AC 1,414 ms
62,688 KB
testcase_17 AC 1,396 ms
62,768 KB
testcase_18 AC 30 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
x=list(map(int,input().split()))
z=sorted(list(set(x)))
w=[set([]) for i in range(len(z))]
W=[[] for i in range(len(z))]
p={}
d=[0 for i in range(a)]
for i in range(len(z)):
    p[z[i]]=i
s=0 
for i in range(a):
    w[p[x[i]]].add(i)
    d[i]=p[x[i]]
for i in range(len(w)):
    s+=len(w[i])
    W[i]=s
#print(x)
#print(z)
#print(p)
#print("集団",w)
#print(W)
#print("どこの集団であるか",d)
for i in range(b):
    c=list(map(int,input().split()))
    c[0]-=1;c[1]-=1
    #print(d[c[0]],d[c[1]])
    if abs(d[c[0]]-d[c[1]])==1:
        print(0)
    else:
        if len(w[d[c[0]]])>1:
            print(max(W[d[c[0]]]-W[d[c[1]]]-(len(w[d[c[0]]])),0))
        else:
            print(max(W[d[c[0]]]-W[d[c[1]]]-1,0))
    #print()
0