結果

問題 No.202 1円玉投げ
ユーザー niyarinniyarin
提出日時 2016-10-04 18:44:42
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,614 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 76,704 KB
実行使用メモリ 216,204 KB
最終ジャッジ日時 2024-12-22 10:49:13
合計ジャッジ時間 108,708 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 81 ms
175,128 KB
testcase_03 AC 80 ms
175,044 KB
testcase_04 AC 81 ms
176,656 KB
testcase_05 AC 1,651 ms
92,084 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 2,280 ms
183,816 KB
testcase_15 TLE -
testcase_16 AC 503 ms
216,204 KB
testcase_17 AC 572 ms
121,300 KB
testcase_18 AC 559 ms
121,108 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 122 ms
78,376 KB
testcase_23 AC 119 ms
78,368 KB
testcase_24 AC 113 ms
78,240 KB
testcase_25 AC 114 ms
78,248 KB
testcase_26 AC 128 ms
78,364 KB
testcase_27 AC 125 ms
78,336 KB
testcase_28 AC 115 ms
78,336 KB
testcase_29 AC 116 ms
78,228 KB
testcase_30 AC 343 ms
80,792 KB
testcase_31 AC 104 ms
78,336 KB
testcase_32 AC 463 ms
83,200 KB
testcase_33 AC 352 ms
81,700 KB
testcase_34 AC 492 ms
83,588 KB
testcase_35 AC 570 ms
121,720 KB
testcase_36 AC 624 ms
122,352 KB
testcase_37 TLE -
testcase_38 AC 535 ms
121,924 KB
testcase_39 AC 99 ms
77,952 KB
testcase_40 AC 95 ms
181,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
inputs = [map(int,raw_input().split(" ")) for i in range(N)]

class AABB:
    def __init__(self):
        pass
    def marge(ab1,ab2):
        ret = AABB()
        ret.left = min(ab1.left,ab2.left)
        ret.right = max(ab1.right,ab2.right)
        ret.up = min(ab1.up,ab2.up)
        ret.down = max(ab1.down,ab2.down)
        ret.children = [ab1,ab2]
        return ret


    def nyrn(self,x,y):
        self.left = x - 10
        self.right = x + 10
        self.up = y - 10
        self.down = y + 10
        self.x = x
        self.y = y
        self.children = -1

    def search(self,cx,cy):
        if cx+10 > self.left and cx-10 < self.right:
            if cy-10<self.down and cy+10 > self.up:
                if self.children == -1:
                    return  (self.x-cx)**2+(self.y-cy)**2 < 400
                else:
                    for c in self.children:
                        if c.search(cx,cy):
                            return True


aabb = AABB()
aabb.nyrn(inputs[0][0],inputs[0][1])
ans = 1
nyrns = [[] for i in range(17)]
nyrns[0].append(aabb)


for x,y in inputs[1:]:
    flag = False
    for i in range(17):
        for c in nyrns[i]:
            if c.search(x,y):
                flag = True
    

    if flag:
        pass
    else:
       ans+=1 
       new_aabb = AABB()
       new_aabb.nyrn(x,y)
       nyrns[0].append(new_aabb)

       for i in range(17):
           while len(nyrns[i] )>2:
               xx = nyrns[i].pop(0)
               yy = nyrns[i].pop(0)
               zz = AABB.marge(xx,yy)
               nyrns[i+1].append(zz)



        
print ans   

0