QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#664031#8790. First BilliondaoqiTL 284ms3876kbC++20982b2024-10-21 19:00:142024-10-21 19:00:14

Judging History

你现在查看的是最新测评结果

  • [2024-10-21 19:00:14]
  • 评测
  • 测评结果:TL
  • 用时:284ms
  • 内存:3876kb
  • [2024-10-21 19:00:14]
  • 提交

answer

#include<bits/stdc++.h>

using i64 = long long;
using l64 = long double;

std::mt19937_64 rng(std::chrono::system_clock::now().time_since_epoch().count());
constexpr int S = 1e9;

void DAOQI() {
    int n;
    std::cin >> n;
    std::vector<i64> a(n + 1), p(n + 1);
    for (int i = 1; i <= n; i++) {
        std::cin >> a[i];
        p[i] = i;
    }

    for (int i = 1; i <= 10000000; i++) {
        i64 sum = 0;
        for (int l = 1, r = 1; r <= n; r++) {
            sum += a[p[r]];
            while (sum > S) sum -= a[p[l++]];
            if (sum == S) {
                std::cout << r - l + 1 << " ";
                for (int k = l; k <= r; k++) std::cout << p[k] << " ";
                return;
            }
        }
        shuffle(p.begin() + 1, p.end(), rng);
    }
}

signed main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int T = 1;
    //std::cin >> T;
    while (T--) DAOQI();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3636kb

input:

10
386413329 88494216 245947398 316438989 192751270 204627269 65749456 3938400 150458676 345180997

output:

5 3 10 2 4 8 

result:

ok OK (n = 10)

Test #2:

score: 0
Accepted
time: 0ms
memory: 3644kb

input:

10
119486233 299942886 169540407 349937991 597883752 32230162 140514533 57341098 12602102 220520836

output:

5 6 2 8 9 5 

result:

ok OK (n = 10)

Test #3:

score: 0
Accepted
time: 0ms
memory: 3588kb

input:

14
384615281 84612238 83310504 54746763 142296081 56775470 128760350 343006424 177232390 214368720 67220468 21895072 16352717 224807522

output:

7 13 7 6 10 1 9 12 

result:

ok OK (n = 14)

Test #4:

score: 0
Accepted
time: 0ms
memory: 3576kb

input:

14
270208635 14270307 89661499 113578022 47687195 101043954 38775146 208193324 650676076 351701957 3427619 59535626 24230888 27009752

output:

7 12 2 1 6 4 10 3 

result:

ok OK (n = 14)

Test #5:

score: 0
Accepted
time: 3ms
memory: 3640kb

input:

20
61638928 106712373 5946815 178135484 4937573 111395400 15504655 67139983 101814514 312223647 130341028 43244171 37671364 54108486 337181317 37924824 153793862 70383750 102917244 66984582

output:

10 10 9 14 13 5 11 4 12 8 18 

result:

ok OK (n = 20)

Test #6:

score: 0
Accepted
time: 2ms
memory: 3608kb

input:

20
67858098 61231428 99398662 1883806 82465954 303619377 87516412 154956240 94872199 76508350 13276828 136541811 203282099 99160366 127539385 13364660 141176136 39751629 67888657 127707903

output:

10 9 18 7 20 15 6 19 10 16 2 

result:

ok OK (n = 20)

Test #7:

score: 0
Accepted
time: 70ms
memory: 3672kb

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 17 5 13 10 23 15 19 22 20 18 

result:

ok OK (n = 24)

Test #8:

score: 0
Accepted
time: 30ms
memory: 3616kb

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 3 7 1 20 19 11 17 21 23 12 5 10 

result:

ok OK (n = 24)

Test #9:

score: 0
Accepted
time: 162ms
memory: 3592kb

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:

14 22 23 13 14 21 19 10 25 24 20 27 7 9 3 

result:

ok OK (n = 28)

Test #10:

score: 0
Accepted
time: 232ms
memory: 3876kb

input:

28
213829745 40823140 14876795 22548901 35958464 159026037 106482651 52655603 76733934 102794554 100713772 80174862 125840182 3619651 74158077 27699586 14743901 68385227 55117143 39623241 67325444 95072408 46052588 46086093 11650160 66077724 149558313 102371804

output:

14 17 22 19 3 25 27 21 5 10 16 13 20 11 6 

result:

ok OK (n = 28)

Test #11:

score: 0
Accepted
time: 284ms
memory: 3640kb

input:

30
38319400 42378812 172927254 71697590 118171420 5615707 8117586 107362865 18142211 89646810 51847201 37450061 138487251 116358215 15432103 13621837 15084921 15012145 42848714 71166566 37074067 11354748 10702902 244865332 41244161 102695984 217681174 21564320 89607508 33521135

output:

15 25 14 24 18 28 20 16 21 12 2 6 23 5 3 11 

result:

ok OK (n = 30)

Test #12:

score: 0
Accepted
time: 155ms
memory: 3608kb

input:

30
239221492 41835739 80260950 47743386 50052259 31410042 1676838 63813733 47622772 150506632 188312503 190432229 6783832 111319580 122183547 37258127 12116231 29322396 58095114 47089744 9262724 204673438 11840273 64585542 11797425 4134848 56164171 30717831 46921664 2844938

output:

15 18 25 17 15 16 20 28 27 14 5 12 4 7 8 11 

result:

ok OK (n = 30)

Test #13:

score: -100
Time Limit Exceeded

input:

30
52710609 39033241 15723499 29898108 62692739 138885388 137151511 90118964 15492963 61261380 35071118 195401367 64471367 39372151 70235925 114596786 27917908 29285928 11044525 11941155 12716377 1533910 24799365 265236184 104128755 17709404 4856890 204911218 17131655 104669610

output:


result: