結果

問題 No.1024 Children in a Row
ユーザー chocoruskchocorusk
提出日時 2020-04-08 12:45:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 827 ms / 2,000 ms
コード長 1,632 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 133,928 KB
最終ジャッジ日時 2024-09-14 06:51:09
合計ジャッジ時間 18,167 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,016 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 45 ms
54,016 KB
testcase_03 AC 66 ms
65,280 KB
testcase_04 AC 65 ms
63,744 KB
testcase_05 AC 69 ms
65,408 KB
testcase_06 AC 71 ms
65,408 KB
testcase_07 AC 66 ms
64,896 KB
testcase_08 AC 67 ms
64,768 KB
testcase_09 AC 69 ms
66,176 KB
testcase_10 AC 767 ms
121,844 KB
testcase_11 AC 753 ms
119,468 KB
testcase_12 AC 749 ms
120,468 KB
testcase_13 AC 777 ms
121,808 KB
testcase_14 AC 756 ms
120,524 KB
testcase_15 AC 804 ms
121,720 KB
testcase_16 AC 737 ms
119,044 KB
testcase_17 AC 651 ms
126,652 KB
testcase_18 AC 600 ms
129,688 KB
testcase_19 AC 818 ms
127,968 KB
testcase_20 AC 807 ms
128,764 KB
testcase_21 AC 803 ms
128,676 KB
testcase_22 AC 827 ms
128,680 KB
testcase_23 AC 761 ms
126,036 KB
testcase_24 AC 788 ms
126,532 KB
testcase_25 AC 771 ms
126,116 KB
testcase_26 AC 667 ms
133,640 KB
testcase_27 AC 636 ms
133,928 KB
testcase_28 AC 621 ms
132,028 KB
testcase_29 AC 409 ms
131,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import bisect
n, m=map(int, input().split())
a=[0]*m
b=[0]*m
k=[0]*m
c=[i for i in range(n)]
cr=[0]*(n+m)
for i in range(n):
    cr[i]=i
g=[[] for i in range(n+m)]
pr=[0]*m
for i in range(m):
    a[i], b[i], k[i]=map(int, input().split())
    a[i]-=1
    b[i]-=1
    g[c[b[i]]].append(i+n)
    pr[i]=c[a[i]]
    c[a[i]]=i+n
    cr[i+n]=a[i]
st=[]
l=[0]*(n+m)
r=[0]*(n+m)
rev=[0]*(n+m)
t=0
for i in range(n):
    st.append(i)
    while len(st)!=0:
        x=st.pop()
        if len(st)==0:
            if i<n-1:
                r[x]=i+1
            else:
                r[x]=n+m
        else:
            r[x]=st[len(st)-1]
        l[x]=t
        rev[t]=x
        t+=1
        for y in g[x]:
            st.append(y)
for i in range(n+m):
    if r[i]<n+m:
        r[i]=l[r[i]]
cnt=[0]*(n+m+1)
for i in range(n+m):
    cnt[i+1]=cnt[i]
    if c[cr[rev[i]]]==rev[i]:
        cnt[i+1]+=1
for i in range(m):
    l1=l[i+n]
    r1=r[i+n]
    l2=l[pr[i]]
    ans=0
    if l1<l2:
        if k[i]<=cnt[l1] or k[i]>cnt[l2]:
            ans=cr[rev[bisect.bisect_left(cnt, k[i])-1]]
        elif k[i]<=cnt[l1]+cnt[l2]-cnt[r1]:
            ans=cr[rev[bisect.bisect_left(cnt, k[i]-cnt[l1]+cnt[r1])-1]]
        else:
            ans=cr[rev[bisect.bisect_left(cnt, k[i]-cnt[l2]+cnt[r1])-1]]
    else:
        if k[i]<=cnt[l2] or k[i]>cnt[r1]:
            ans=cr[rev[bisect.bisect_left(cnt, k[i])-1]]
        elif k[i]<=cnt[l2]+cnt[r1]-cnt[l1]:
            ans=cr[rev[bisect.bisect_left(cnt, k[i]-cnt[l2]+cnt[l1])-1]]
        else:
            ans=cr[rev[bisect.bisect_left(cnt, k[i]-cnt[r1]+cnt[l1])-1]]
    print(ans+1)
0