結果

問題 No.5004 Room Assignment
ユーザー negibose2020negibose2020
提出日時 2021-12-01 22:03:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 944 ms / 5,000 ms
コード長 3,271 bytes
コンパイル時間 509 ms
実行使用メモリ 105,928 KB
スコア 54,977,909
平均クエリ数 6423.78
最終ジャッジ日時 2021-12-01 22:05:18
合計ジャッジ時間 91,622 ms
ジャッジサーバーID
(参考情報)
judge11 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 795 ms
103,096 KB
testcase_01 AC 850 ms
101,700 KB
testcase_02 AC 823 ms
101,068 KB
testcase_03 AC 862 ms
103,188 KB
testcase_04 AC 820 ms
101,360 KB
testcase_05 AC 858 ms
101,660 KB
testcase_06 AC 822 ms
103,036 KB
testcase_07 AC 840 ms
102,004 KB
testcase_08 AC 795 ms
101,784 KB
testcase_09 AC 889 ms
104,156 KB
testcase_10 AC 814 ms
101,892 KB
testcase_11 AC 826 ms
101,704 KB
testcase_12 AC 865 ms
102,516 KB
testcase_13 AC 870 ms
102,332 KB
testcase_14 AC 876 ms
105,928 KB
testcase_15 AC 818 ms
102,824 KB
testcase_16 AC 803 ms
102,748 KB
testcase_17 AC 820 ms
103,060 KB
testcase_18 AC 813 ms
102,132 KB
testcase_19 AC 822 ms
103,752 KB
testcase_20 AC 814 ms
102,464 KB
testcase_21 AC 823 ms
100,660 KB
testcase_22 AC 851 ms
102,696 KB
testcase_23 AC 838 ms
101,624 KB
testcase_24 AC 807 ms
101,748 KB
testcase_25 AC 809 ms
101,104 KB
testcase_26 AC 874 ms
104,336 KB
testcase_27 AC 783 ms
100,384 KB
testcase_28 AC 858 ms
104,392 KB
testcase_29 AC 854 ms
102,548 KB
testcase_30 AC 944 ms
100,564 KB
testcase_31 AC 847 ms
102,320 KB
testcase_32 AC 855 ms
102,496 KB
testcase_33 AC 822 ms
101,400 KB
testcase_34 AC 840 ms
100,268 KB
testcase_35 AC 811 ms
100,800 KB
testcase_36 AC 869 ms
100,344 KB
testcase_37 AC 831 ms
102,816 KB
testcase_38 AC 871 ms
101,444 KB
testcase_39 AC 857 ms
104,588 KB
testcase_40 AC 831 ms
100,620 KB
testcase_41 AC 830 ms
102,512 KB
testcase_42 AC 827 ms
101,760 KB
testcase_43 AC 818 ms
100,464 KB
testcase_44 AC 830 ms
101,560 KB
testcase_45 AC 841 ms
102,424 KB
testcase_46 AC 873 ms
100,344 KB
testcase_47 AC 817 ms
101,508 KB
testcase_48 AC 928 ms
100,168 KB
testcase_49 AC 929 ms
103,452 KB
testcase_50 AC 832 ms
102,836 KB
testcase_51 AC 818 ms
101,280 KB
testcase_52 AC 817 ms
102,452 KB
testcase_53 AC 856 ms
100,904 KB
testcase_54 AC 836 ms
101,556 KB
testcase_55 AC 832 ms
100,152 KB
testcase_56 AC 868 ms
105,284 KB
testcase_57 AC 809 ms
100,656 KB
testcase_58 AC 811 ms
100,796 KB
testcase_59 AC 828 ms
101,708 KB
testcase_60 AC 832 ms
103,060 KB
testcase_61 AC 853 ms
102,296 KB
testcase_62 AC 839 ms
101,684 KB
testcase_63 AC 787 ms
102,164 KB
testcase_64 AC 824 ms
102,400 KB
testcase_65 AC 847 ms
102,236 KB
testcase_66 AC 809 ms
101,096 KB
testcase_67 AC 846 ms
100,276 KB
testcase_68 AC 825 ms
101,256 KB
testcase_69 AC 844 ms
99,724 KB
testcase_70 AC 805 ms
102,296 KB
testcase_71 AC 863 ms
101,796 KB
testcase_72 AC 783 ms
100,976 KB
testcase_73 AC 847 ms
101,672 KB
testcase_74 AC 822 ms
101,516 KB
testcase_75 AC 812 ms
100,308 KB
testcase_76 AC 802 ms
100,756 KB
testcase_77 AC 821 ms
101,696 KB
testcase_78 AC 834 ms
103,548 KB
testcase_79 AC 831 ms
102,892 KB
testcase_80 AC 818 ms
103,432 KB
testcase_81 AC 866 ms
103,240 KB
testcase_82 AC 887 ms
102,964 KB
testcase_83 AC 845 ms
102,272 KB
testcase_84 AC 835 ms
102,096 KB
testcase_85 AC 810 ms
102,244 KB
testcase_86 AC 844 ms
103,800 KB
testcase_87 AC 841 ms
102,540 KB
testcase_88 AC 819 ms
102,720 KB
testcase_89 AC 830 ms
102,292 KB
testcase_90 AC 869 ms
102,752 KB
testcase_91 AC 862 ms
103,024 KB
testcase_92 AC 819 ms
100,440 KB
testcase_93 AC 796 ms
101,012 KB
testcase_94 AC 796 ms
100,504 KB
testcase_95 AC 832 ms
102,564 KB
testcase_96 AC 873 ms
103,956 KB
testcase_97 AC 844 ms
101,956 KB
testcase_98 AC 814 ms
100,360 KB
testcase_99 AC 822 ms
102,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
import time

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())


stime=time.perf_counter()

T,R=map(int,input().split())
t=0
N=5400
uf=UnionFind(N+1)
p=[-1]*(N+1)

s=set()
# スキル値, プレイヤーi, 出現チック
s.add((-10000000,-1,-1))
s.add((100000000,-1,-1))
pi=1

import bisect

while t<3600 :
    nowtime=time.perf_counter()
    L=list(map(int,input().split()))
    if nowtime - stime >4.85:
        t+=1
        print(0)
        sys.stdout.flush()
        continue
    
    t_ans=set()
    for i in range(L[0]):
        # print(s)
        nowi=(L[i+1],pi,t)
        p[pi]=L[i+1]
        sorteds=sorted(list(s))
        target=bisect.bisect_right(sorteds,nowi)

        used=False

        # for _t in list(t_ans):
        #     if abs(p[pi] - p[_t]) < 5:
        #         sz=len(uf.members(_t))
        #         if sz < 3:
        #             uf.union(_t,pi)
        #             t_ans.add(pi)
        #             used = True
        #             break

        if abs(sorteds[target-1][0] - L[i+1])<5:
            sz=len(uf.members(sorteds[target-1][1]))
            if sz<4:
                uf.union(pi,sorteds[target-1][1])
                t_ans.add(pi)
                used = True
                s.discard(sorteds[target-1])

        if abs(sorteds[target][0] - L[i+1])<5:
            sz=len(uf.members(sorteds[target][1]))
            if sz<4:
                uf.union(pi,sorteds[target][1])
                t_ans.add(pi)
                used = True
                s.discard(sorteds[target])

        if used == False:
            s.add(nowi)

        pi+=1
    t+=1

    # print (t_ans)

    ans4print=[]
    ans4print_num=0
    for ans in t_ans:
        m=uf.members(ans)
        mls=[]
        for i in range(1,len(m)) :
            mls.append([m[0],m[i]])
            ans4print_num+=1
        ans4print.append(mls)

    print(ans4print_num)
    sys.stdout.flush()
    for i in range (len(ans4print)):
        for e in ans4print[i]:
            print(*e)
            sys.stdout.flush()
0