QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#798474 | #8790. First Billion | q1w2e3r4# | WA | 541ms | 136552kb | C++14 | 1.7kb | 2024-12-04 14:02:05 | 2024-12-04 14:02:15 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
int n;
int a[105];
vector<int> v[405];
const int SZ = 3000;
void build(int id, int l, int r){
if(l == r){
v[id].push_back(a[l]);
v[id].push_back(0);
return;
}
int mid = l + r >> 1;
build(id*2, l, mid);
build(id*2+1, mid+1, r);
vector<int> tmp;
for(int x: v[id*2]){
for(int y: v[id*2+1]){
tmp.push_back(x+y);
}
}
sort(tmp.begin(), tmp.end());
int n = unique(tmp.begin(), tmp.end()) - tmp.begin();
if(n >= SZ){
int l = n/2 - SZ/2, r = n/2 + SZ/2 - 1;
for(int i=l;i<=r;i++){
v[id].push_back(tmp[i]);
}
}
else{
v[id] = tmp;
}
}
void query(int id, int l, int r, int target, vector<int>& ans){
// cout << "query " << l << " " << r << " " << target << endl;
if(l == r){
if(target == a[l]) ans.push_back(l);
assert(target == 0 || target == a[l]);
return;
}
int mid = l + r >> 1;
for(auto x: v[id*2]){
for(int y: v[id*2+1]){
if(x + y == target){
query(id*2, l, mid, x, ans);
query(id*2+1, mid+1, r, y, ans);
return;
}
}
}
}
signed main(){
cin >> n;
for(int i=1;i<=n;i++) cin >> a[i];
build(1,1,n);
bool ok = false;
for(auto x: v[1]){
// cout << x << " ";
if(x == 1e9) ok = true;
}
// assert(ok);
vector<int> ans;
query(1,1,n,(int)1e9,ans);
cout << ans.size();
for(int x: ans){
cout << " " << x;
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3888kb
input:
10 386413329 88494216 245947398 316438989 192751270 204627269 65749456 3938400 150458676 345180997
output:
5 1 5 6 7 9
result:
ok OK (n = 10)
Test #2:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
10 119486233 299942886 169540407 349937991 597883752 32230162 140514533 57341098 12602102 220520836
output:
5 1 3 4 7 10
result:
ok OK (n = 10)
Test #3:
score: 0
Accepted
time: 1ms
memory: 3768kb
input:
14 384615281 84612238 83310504 54746763 142296081 56775470 128760350 343006424 177232390 214368720 67220468 21895072 16352717 224807522
output:
7 2 3 4 5 8 11 14
result:
ok OK (n = 14)
Test #4:
score: 0
Accepted
time: 1ms
memory: 3740kb
input:
14 270208635 14270307 89661499 113578022 47687195 101043954 38775146 208193324 650676076 351701957 3427619 59535626 24230888 27009752
output:
7 5 7 8 9 11 13 14
result:
ok OK (n = 14)
Test #5:
score: 0
Accepted
time: 57ms
memory: 12460kb
input:
20 61638928 106712373 5946815 178135484 4937573 111395400 15504655 67139983 101814514 312223647 130341028 43244171 37671364 54108486 337181317 37924824 153793862 70383750 102917244 66984582
output:
10 1 2 3 6 7 15 16 17 19 20
result:
ok OK (n = 20)
Test #6:
score: 0
Accepted
time: 48ms
memory: 13292kb
input:
20 67858098 61231428 99398662 1883806 82465954 303619377 87516412 154956240 94872199 76508350 13276828 136541811 203282099 99160366 127539385 13364660 141176136 39751629 67888657 127707903
output:
10 1 3 4 5 8 11 12 13 14 17
result:
ok OK (n = 20)
Test #7:
score: 0
Accepted
time: 497ms
memory: 136408kb
input:
24 17125795 281143405 10375259 196293002 158174864 34520650 52919232 87393970 99085271 62281508 67168428 55174991 54533464 51393059 89276370 41441658 72793517 30466999 73758332 97064918 111541434 142047546 12934221 101092107
output:
12 3 4 5 10 13 15 17 18 19 20 22 23
result:
ok OK (n = 24)
Test #8:
score: 0
Accepted
time: 541ms
memory: 134896kb
input:
24 70224368 148769600 36654748 23404220 15009825 57449487 46896672 6065662 10377031 133719710 23220853 184445684 8462667 88501546 155244839 229323557 140109402 52520271 78995771 75721556 87987586 118427778 107013825 101453342
output:
12 2 4 6 8 9 13 14 15 16 18 22 24
result:
ok OK (n = 24)
Test #9:
score: -100
Wrong Answer
time: 525ms
memory: 136552kb
input:
28 122321206 60841271 22767116 183943582 6247754 32767541 19129802 21313874 144503909 59360441 12259051 19044256 50267333 25766572 133411289 32253746 102412217 46186594 55413161 39907615 52325783 86862071 185310732 138228874 22000146 149813853 98156445 77183766
output:
0
result:
wrong answer need sum 1000000000, got sum 0