結果

問題 No.743 Segments on a Polygon
ユーザー 双六双六
提出日時 2020-07-24 18:47:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 768 ms / 2,000 ms
コード長 1,259 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 99,600 KB
最終ジャッジ日時 2024-06-25 16:12:43
合計ジャッジ時間 9,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 757 ms
99,476 KB
testcase_01 AC 761 ms
99,552 KB
testcase_02 AC 760 ms
99,444 KB
testcase_03 AC 753 ms
99,440 KB
testcase_04 AC 768 ms
99,024 KB
testcase_05 AC 752 ms
99,268 KB
testcase_06 AC 759 ms
98,948 KB
testcase_07 AC 765 ms
99,220 KB
testcase_08 AC 768 ms
99,600 KB
testcase_09 AC 322 ms
98,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class SegmentTree(object):
	#N:処理する区間の長さ
	def __init__(self, N):
		self.N0 = 2 ** (N - 1).bit_length()
		self.data = [0] * (2 * self.N0)

	#k番目の値をxに更新
	def update(self, k, x):
		k += self.N0 - 1
		self.data[k] = x
		while k > 0:
			k = (k - 1) // 2
			self.data[k] = self.data[2 * k + 1] + self.data[2 * k + 2]

	#区間[l, r]の和
	def query(self, l, r):
		L = l + self.N0; R = r + self.N0 + 1
		m = 0
		while L < R:
			if R & 1:
				R -= 1
				m = m + self.data[R - 1]
			if L & 1:
				m = m + self.data[L - 1]
				L += 1
			L >>= 1; R >>= 1

		return m

#処理内容
def main():
	N, M = getlist()
	SegL = SegmentTree(M)
	SegR = SegmentTree(M)
	L = []
	for i in range(N):
		l, r = list(sorted(getlist()))
		L.append([l, r])
		SegL.update(l, 1)
		SegR.update(r, 1)

	L.sort()

	ans = 0
	for l, r in L:
		val = abs(SegL.query(l, r) - SegR.query(l, r))
		ans += val
		SegL.update(l, 0)
		SegR.update(r, 0)
		SegL.update(r, 1)
		SegR.update(l, 1)

	# print(ans)
	print(int(ans // 2))

if __name__ == '__main__':
	main()
0