131
272 428
185 936
3 288
271 549
707 958
362 614
128 778
512 570
233 880
68 475
517 986
<1061 bytes omitted>
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#69039 | #1021. jwp的区间游戏 | Time Limit Exceeded | 20 | 5738 ms | 655364 K | Python 3 / 709 B | 焱 | 2022-04-24 3:11:26 |
def isin(a, b):
if b >= a[0] and b <= a[1]:
return 1
else:
return 0
def choose(x, l):
s = 0
chose = []
for i in x:
for j in range(len(l)):
s = s + isin(l[j], i)
chose.append(s)
s = 0
index = chose.index(max(chose))
num = x[index]
new = []
for j in range(len(l)):
if not isin(l[j], num):
new.append(l[j])
return new
n = int(input())
l = []
total=[]
for i in range(n):
x = list(map(int, input().split()))
for i in range(x[0],x[1]+1):
total.append(i)
l.append(x)
k = 0
while len(l) > 0:
l = choose(total, l)
k = k + 1
print(k-1)
131
272 428
185 936
3 288
271 549
707 958
362 614
128 778
512 570
233 880
68 475
517 986
<1061 bytes omitted>
43
27 52
40 72
16 58
45 77
74 99
17 18
39 64
30 94
2 88
14 93
85 86
6 28
86 93
29 45
<200 bytes omitted>
用户输出
6
系统信息
Exited with return code 0
47669
17877 19471
11395 15218
2902 18871
26938 27448
7762 11681
34 8895
19658 23096
1358 229
<587181 bytes omitted>
706251
8804 16040
19927 24477
13287 18478
28138 29487
6264 25954
5313 29464
13205 16993
1231
<8702005 bytes omitted>