QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#537973#4565. Rarest InsectsYahia_Emara#0 39ms10120kbC++202.3kb2024-08-30 20:23:382024-08-30 20:23:39

Judging History

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

  • [2024-08-30 20:23:39]
  • 评测
  • 测评结果:0
  • 用时:39ms
  • 内存:10120kb
  • [2024-08-30 20:23:38]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define sz(x) int(x.size())
#define dbg(x) cout << (#x) << " : " << x << endl
#define pb push_back
#define bk(x) x.back()
#define all(x) x.begin(),x.end()
#define LOOP(n) for(int rp=0;rp<n;rp++)
#define sq(x) ((x)*(x))
typedef long long ll;
typedef long double dl;
const int SZ=5e5+7;
const ll INF=1e18+7;
const dl eps=1e-9;
int MOD=1e9+7;
mt19937_64 rng(time(0));
int rnd(int l,int r){
    return uniform_int_distribution<int>(l,r)(rng);
}
ll trig(ll x){
    return x*(x+1)/2;
}
int getN(){
    int n;cin >> n;
    return n;
}
#define cmbntrcs fact[0]=1;for(int i=1;i<SZ;i++)fact[i]=mul(fact[i-1],i);finv[SZ-1]=inv(fact[SZ-1]);for(int i=SZ-2;i>0;i--)finv[i]=mul(finv[i+1],i+1);
int fact[SZ],finv[SZ];
int add(int x,int y,int MOD=MOD){
    x+=y;if(x>=MOD)x-=MOD;
    return x;
}
int sub(int x,int y,int MOD=MOD){
    x-=y;if(x<0)x+=MOD;
    return x;
}
int mul(int x,int y,int MOD=MOD){
    return(x*1ll*y)%MOD;
}
int pwr(int x,ll b,int MOD=MOD){
    int rt=1;
    while(b>0){
        if(b&1)rt=mul(rt,x,MOD);
        x=mul(x,x,MOD),b>>=1;
    }
    return rt;
}
int inv(int x,int MOD=MOD){
    return pwr(x,MOD-2,MOD);
}
#include "insects.h"
//#include "stub.cpp"
int n,p[SZ],a[SZ],k,vs[SZ];
vector<int>v;
void ins(int i){
    i=p[i];
    vs[i]=1;
    move_inside(i);
    v.pb(i);
}
void dlt(){
    vs[bk(v)]=0;
    move_outside(bk(v));
    v.pop_back();
}
void permdlt(){
    vs[bk(v)]=2;
    move_outside(bk(v));
    v.pop_back();
}
int card(){
    return press_button();
}
int min_cardinality(int N){
    n=N;
    for(int i=0;i<n;i++)p[i]=i,swap(p[i],p[rnd(0,i)]);
    for(int i=0;i<n;i++){
        ins(i);
        if(card()>1)dlt();
    }
    k=sz(v);
    int ans=n/k;
    for(int i=0;i<n;i++){
        if(vs[i])continue;
        ins(i);
        if(card()>ans)permdlt();
    }
    while(ans>1){
        if(sz(v)==ans*k)break;
        ans--;
        while(card()>ans)dlt();
        for(int i=0;i<n;i++){
            if(vs[i])continue;
            ins(i);
            if(card()>ans)permdlt();
        }
    }
    return ans;
}
/*int main(){
    ios_base::sync_with_stdio(0);cin.tie(0);
    //cout << fixed << setprecision(12);
    int tt=1;
    //cin >> tt;
    LOOP(tt){
        //code
    }
    return 0;
}*/

详细

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 7928kb

input:

6
1
1
1
2
2
2
1
2
2

output:

8
0 2
8
2
8
0 1
8
2
8
0 3
8
2
8
0 5
8
2
8
1 5
8
0 0
8
2
8
1 0
8
0 4
8
2
8
1 4
8
0 2
8
2
8
0 0
8
2
8
0 4
8
2
8
3 2

result:

wrong answer Wrong answer.

Subtask #2:

score: 0
Wrong Answer

Test #24:

score: 0
Wrong Answer
time: 39ms
memory: 10120kb

input:

1000
1
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2...

output:

8
0 396
8
2
8
0 189
8
2
8
1 189
8
0 99
8
2
8
1 99
8
0 162
8
2
8
1 162
8
0 926
8
2
8
1 926
8
0 904
8
2
8
1 904
8
0 914
8
2
8
1 914
8
0 94
8
2
8
1 94
8
0 203
8
2
8
1 203
8
0 579
8
2
8
1 579
8
0 26
8
2
8
1 26
8
0 160
8
2
8
1 160
8
0 845
8
2
8
1 845
8
0 649
8
2
8
1 649
8
0 200
8
2
8
1 200
8
0 104
8
2
8
...

result:

wrong answer Too many queries.

Subtask #3:

score: 0
Wrong Answer

Test #43:

score: 75
Accepted
time: 2ms
memory: 9984kb

input:

2
1
2
2

output:

8
0 0
8
2
8
0 1
8
2
8
1 1
8
0 1
8
2
8
3 2

result:

ok 

Test #44:

score: 75
Accepted
time: 1ms
memory: 7940kb

input:

2
1
1

output:

8
0 0
8
2
8
0 1
8
2
8
3 1

result:

ok 

Test #45:

score: 75
Accepted
time: 0ms
memory: 9984kb

input:

3
1
2
1
2

output:

8
0 2
8
2
8
0 1
8
2
8
1 1
8
0 0
8
2
8
0 1
8
2
8
1 1
8
3 1

result:

ok 

Test #46:

score: 73.59
Acceptable Answer
time: 0ms
memory: 9988kb

input:

6
1
2
2
1
2
2
1
2
2
2
2
2
2
2
2
1
1
2
2
1

output:

8
0 5
8
2
8
0 4
8
2
8
1 4
8
0 0
8
2
8
1 0
8
0 2
8
2
8
0 1
8
2
8
1 1
8
0 3
8
2
8
1 3
8
0 5
8
2
8
0 4
8
2
8
0 2
8
2
8
2
8
0 5
8
2
8
0 4
8
2
8
0 2
8
2
8
2
8
1 2
8
2
8
1 4
8
2
8
0 5
8
2
8
0 4
8
2
8
1 4
8
0 0
8
2
8
1 0
8
0 2
8
2
8
3 1

result:

points 0.98120 points  0.98120

Test #47:

score: 0
Wrong Answer
time: 0ms
memory: 10080kb

input:

10
1
2
2
1
2
2
2
2
2
2
1
2
2
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
2
2
2
2
3
2
2
2
2
1
1
2
2
1
2
2

output:

8
0 9
8
2
8
0 4
8
2
8
1 4
8
0 0
8
2
8
1 0
8
0 2
8
2
8
0 6
8
2
8
1 6
8
0 8
8
2
8
1 8
8
0 7
8
2
8
1 7
8
0 1
8
2
8
1 1
8
0 3
8
2
8
1 3
8
0 5
8
2
8
1 5
8
0 9
8
2
8
0 4
8
2
8
0 2
8
2
8
0 8
8
2
8
0 7
8
2
8
2
8
0 9
8
2
8
0 4
8
2
8
0 2
8
2
8
0 8
8
2
8
0 7
8
2
8
2
8
0 9
8
2
8
0 4
8
2
8
0 2
8
2
8
0 8
8
2
8
0 ...

result:

wrong answer Wrong answer.