結果

問題 No.743 Segments on a Polygon
ユーザー stngstng
提出日時 2022-05-28 18:04:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 88,164 KB
最終ジャッジ日時 2024-09-20 23:22:58
合計ジャッジ時間 6,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 423 ms
87,516 KB
testcase_01 AC 417 ms
87,372 KB
testcase_02 AC 439 ms
87,476 KB
testcase_03 AC 426 ms
88,164 KB
testcase_04 AC 418 ms
87,848 KB
testcase_05 AC 431 ms
87,516 KB
testcase_06 AC 424 ms
87,920 KB
testcase_07 AC 445 ms
87,656 KB
testcase_08 AC 441 ms
87,428 KB
testcase_09 AC 191 ms
86,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)
 
    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
 
    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

n,m = map(int,input().split())

ab = [0]*n

for i in range(n):
    a,b = map(int,input().split())
    if a < b:
        ab[i] = [b,a]
    else:
        ab[i] = [a,b]

ab.sort(reverse=True)
#print(ab)

ans = 0

bit = Bit(m+1)
for i in range(n):
    bit.add(ab[i][1]+1,1)
    ans += (bit.sum(ab[i][0]+1)-bit.sum(ab[i][1]+1))

print(ans)
0