QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#363707 | #7695. Double Up | lucasrpatten# | AC ✓ | 611ms | 70708kb | Python3 | 677b | 2024-03-24 02:12:59 | 2024-03-24 02:12:59 |
Judging History
answer
import sys
sys.setrecursionlimit(10000)
input()
l=[int(i) for i in input().split()]
d = {}
def dp(i,j):
if (i,j) in d:
return d[(i,j)]
if j-i==1:
return l[i]
a=dp(i,j-1)
b=dp(i+1,j)
if a!=b:
v = max(a,b)
d[(i,j)] = v
return v
lo=i+1
hi=j
while lo < hi:
m=(hi+lo)//2
e=dp(i,m)
f=dp(m,j)
if e<a and f<a:
d[(i,j)] = a
return a
if e==a and f==a:
d[(i,j)] = 2*a
return 2*a
if e<a:
lo=m+1
else:
hi=m
d[(i,j)] = a
return a
print(dp(0,len(l)))
详细
Test #1:
score: 100
Accepted
time: 2ms
memory: 9416kb
input:
5 4 2 2 1 8
output:
16
result:
ok single line: '16'
Test #2:
score: 0
Accepted
time: 526ms
memory: 70304kb
input:
1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...
output:
512
result:
ok single line: '512'
Test #3:
score: 0
Accepted
time: 572ms
memory: 70708kb
input:
1000 1267650600228229401496703205376 1267650600228229401496703205376 1267650600228229401496703205376 1267650600228229401496703205376 1267650600228229401496703205376 1267650600228229401496703205376 1267650600228229401496703205376 1267650600228229401496703205376 1267650600228229401496703205376 1267650...
output:
649037107316853453566312041152512
result:
ok single line: '649037107316853453566312041152512'
Test #4:
score: 0
Accepted
time: 7ms
memory: 9420kb
input:
1 1
output:
1
result:
ok single line: '1'
Test #5:
score: 0
Accepted
time: 10ms
memory: 9424kb
input:
1 2
output:
2
result:
ok single line: '2'
Test #6:
score: 0
Accepted
time: 10ms
memory: 9444kb
input:
1 4294967296
output:
4294967296
result:
ok single line: '4294967296'
Test #7:
score: 0
Accepted
time: 7ms
memory: 9468kb
input:
1 18446744073709551616
output:
18446744073709551616
result:
ok single line: '18446744073709551616'
Test #8:
score: 0
Accepted
time: 0ms
memory: 9436kb
input:
1 1267650600228229401496703205376
output:
1267650600228229401496703205376
result:
ok single line: '1267650600228229401496703205376'
Test #9:
score: 0
Accepted
time: 88ms
memory: 17220kb
input:
384 18014398509481984 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 72057594037927936 10737418...
output:
618970019642690137449562112
result:
ok single line: '618970019642690137449562112'
Test #10:
score: 0
Accepted
time: 180ms
memory: 22996kb
input:
430 36893488147419103232 128 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248 2251799813685248...
output:
158456325028528675187087900672
result:
ok single line: '158456325028528675187087900672'
Test #11:
score: 0
Accepted
time: 170ms
memory: 24836kb
input:
527 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 1099511627776 10...
output:
158456325028528675187087900672
result:
ok single line: '158456325028528675187087900672'
Test #12:
score: 0
Accepted
time: 611ms
memory: 45484kb
input:
809 1073741824 77371252455336267181195264 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 2097152 20...
output:
19807040628566084398385987584
result:
ok single line: '19807040628566084398385987584'
Test #13:
score: 0
Accepted
time: 200ms
memory: 22988kb
input:
435 618970019642690137449562112 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 65536 128 128 128 128 128 128 128 128 128 128 128 128 128 ...
output:
316912650057057350374175801344
result:
ok single line: '316912650057057350374175801344'
Test #14:
score: 0
Accepted
time: 608ms
memory: 67664kb
input:
857 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 4398046511104 43...
output:
1267650600228229401496703205376
result:
ok single line: '1267650600228229401496703205376'
Test #15:
score: 0
Accepted
time: 356ms
memory: 42636kb
input:
765 17592186044416 2417851639229258349412352 2417851639229258349412352 2417851639229258349412352 2417851639229258349412352 2417851639229258349412352 2417851639229258349412352 2417851639229258349412352 2417851639229258349412352 2417851639229258349412352 2417851639229258349412352 241785163922925834941...
output:
1237940039285380274899124224
result:
ok single line: '1237940039285380274899124224'
Test #16:
score: 0
Accepted
time: 20ms
memory: 10272kb
input:
122 2097152 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 18014398509481984 ...
output:
10141204801825835211973625643008
result:
ok single line: '10141204801825835211973625643008'
Test #17:
score: 0
Accepted
time: 294ms
memory: 23292kb
input:
491 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 8192 562949953421312 9444732965739290427392 9444732965739290427392 9444732965739290427392 9444732965739290427392 9444732965739290427392 94447329657392904273...
output:
1267650600228229401496703205376
result:
ok single line: '1267650600228229401496703205376'
Test #18:
score: 0
Accepted
time: 33ms
memory: 11032kb
input:
164 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 549755813888 5497558138...
output:
20282409603651670423947251286016
result:
ok single line: '20282409603651670423947251286016'