QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#538008 | #4565. Rarest Insects | Yahia_Emara# | 0 | 1ms | 8040kb | C++20 | 2.8kb | 2024-08-30 20:49:27 | 2024-08-30 20:49:28 |
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();
}
bool f(int C){
while(card()>C)dlt();
for(int i=0;i<n;i++){
if(vs[p[i]])continue;
ins(i);
if(card()>C)dlt();
}
if(C*k==sz(v))return 1;
return 0;
}
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);
if(k==1)return n;
if(k<=5){
vector<int>w=v;
while(sz(v))dlt();
for(int i=0;i<k;i++)swap(w[i],w[rnd(0,i)]);
int C=0,ans=1e9;
for(int i=0;i<k-1;i++){
ins(w[i]);
for(int i=0;i<n;i++){
if(vs[p[i]])continue;
ins(i);
if(card()!=sz(v))dlt();
}
C+=sz(v),ans=min(ans,sz(v));
while(sz(v))dlt();
}
ans=min(ans,n-C);
return ans;
}
int l=2,r=n/k,ans=1;
while(l<=r){
int md=(l+r)>>1;
if(f(md))l=md+1,ans=md;
else r=md-1;
}
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;
}*/
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 10
Accepted
time: 0ms
memory: 7968kb
input:
6 1 1 1 1 1 1
output:
8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 3 1
result:
ok
Test #2:
score: 0
Wrong Answer
time: 1ms
memory: 7964kb
input:
2 1 1
output:
8 0 0 8 2 8 0 0 8 2 8 1 0 8 1 0 8 0 0 8 1 0 8 3 1
result:
wrong answer Wrong answer.
Subtask #2:
score: 0
Wrong Answer
Test #24:
score: 0
Wrong Answer
time: 0ms
memory: 8040kb
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:
8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 8 0 0 8 2 ...
result:
wrong answer Wrong answer.
Subtask #3:
score: 0
Wrong Answer
Test #43:
score: 0
Wrong Answer
time: 1ms
memory: 8028kb
input:
2 1 1
output:
8 0 0 8 2 8 0 0 8 2 8 1 0 8 1 0 8 0 0 8 1 0 8 3 1
result:
wrong answer Wrong answer.