QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#495351#9156. 百万富翁TimDee#66 2114ms89204kbC++172.3kb2024-07-27 20:12:472024-07-27 20:12:48

Judging History

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

  • [2024-07-27 20:12:48]
  • 评测
  • 测评结果:66
  • 用时:2114ms
  • 内存:89204kb
  • [2024-07-27 20:12:47]
  • 提交

answer

#include "richest.h"
#include <bits/stdc++.h>
using namespace std;
#define forn(i,n) for(int i=0; i<(n); ++i)
#define pb push_back
#define pi pair<int,int>
#define f first
#define s second 
#define all(x) x.begin(), x.end()
int richest(int n, int T, int S) {
    if (T==1) {
        vector<int> f,s;
        forn(i,n) forn(j,i) {f.pb(j); s.pb(i);}
        auto z = ask(f,s);
        vector<pi> cnt(n);
        forn(i,n) cnt[i].s=i;
        for(auto&x:z) cnt[x].f++;
        sort(all(cnt));
        return cnt[n-1].s;
    }
    vector<int> a; forn(i,n) a.pb(i);
    for(int it=0; it<4; ++it) {
        vector<int> f,s;
        for(int i=0; i<a.size(); i+=2) {
            f.pb(a[i]);
            s.pb(a[i+1]);
        }
        auto z = ask(f,s);
        a = z;
    }
    vector<int> cnt(n);
    if (1) {
        vector<int> f,s;
        for(int i=0; i<a.size(); i+=4) {
            for(int x=0; x<4; ++x) {
                for(int y=x+1; y<4; ++y) {
                    f.pb(a[i+x]);
                    s.pb(a[i+y]);
                }
            }
        }
        auto z = ask(f,s);
        for(auto&x:z) cnt[x]++;
        vector<int> b;
        forn(i,n) if (cnt[i]==3) b.pb(i);
        forn(i,n) cnt[i]=0;
        a=b;
    }
    for(int it=0; it<1; ++it) {
        vector<int> f,s;
        for(int i=0; i<a.size(); i+=5) {
            for(int x=0; x<5; ++x) {
                for(int y=x+1; y<5; ++y) {
                    f.pb(a[i+x]);
                    s.pb(a[i+y]);
                }
            }
        }
        auto z = ask(f,s);
        for(auto&x:z) cnt[x]++;
        vector<int> b;
        forn(i,n) if (cnt[i]==4) b.pb(i);
        forn(i,n) cnt[i]=0;
        a=b;
    }
    for(int it=0; it<1; ++it) {
        vector<int> f,s;
        for(int i=0; i<a.size(); i+=25) {
            for(int x=0; x<25; ++x) {
                for(int y=x+1; y<25; ++y) {
                    f.pb(a[i+x]);
                    s.pb(a[i+y]);
                }
            }
        }
        auto z = ask(f,s);
        for(auto&x:z) cnt[x]++;
        vector<int> b;
        forn(i,n) if (cnt[i]==24) b.pb(i);
        forn(i,n) cnt[i]=0;
        a=b;
    }
    vector<int> f,s;
    forn(i,125) forn(j,i) {f.pb(a[j]); s.pb(a[i]);}
    auto z = ask(f,s);
    for(auto&x:z) cnt[x]++;
    forn(i,n) if (cnt[i]==124) return i;
}

詳細信息


Pretests

Pretest #1:

score: 15
Accepted
time: 599ms
memory: 22884kb

input:

1000 1 499500 957319859

output:

Correct
7127326332295218295
1.000000
1331569654267968081

result:

points 1.0 Correct

Pretest #2:

score: 51
Acceptable Answer
time: 2114ms
memory: 86952kb

input:

1000000 20 2000000 29091473

output:

Partially correct Case 2, 51 / 85, maxt = 8, maxs = 1107750
17050945331516586343
0.600000
2173113824806240907

result:

points 0.6 Partially correct Case 2, 51 / 85, maxt = 8, maxs = 1107750


Final Tests

Test #1:

score: 15
Accepted
time: 601ms
memory: 22260kb

input:

1000 1 499500 957319857

output:

Correct
7127326332295218295
1.000000
1331569654267968081

result:

points 1.0 Correct

Test #2:

score: 51
Acceptable Answer
time: 2099ms
memory: 89204kb

input:

1000000 20 2000000 29091471

output:

Partially correct Case 2, 51 / 85, maxt = 8, maxs = 1107750
17050945331516586343
0.600000
2173113824806240907

result:

points 0.6 Partially correct Case 2, 51 / 85, maxt = 8, maxs = 1107750