답안 #130978

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
130978 2019-07-16T10:45:41 Z semiauto CEOI16_icc (CEOI16_icc) C++14
0 / 100
636 ms 632 KB
#include <bits/stdc++.h>
#include "icc.h"
using namespace std;
int i,j,k,sa,sb,l,r,m,x,q,alo,balo;
int parent[101],mas[101],a[101],b[101];
bool fix[101],go[101][101];
int n;/*
bool query(int a,int b,int *A,int *B) {
    int i,j;
    for (i=0;i<a;i++)
        for (j=0;j<b;j++)
            if (go[A[i]][B[j]])
                return true;
    return false;
}
void setRoad(int a,int b) {
    cout<<a<<" "<<b<<endl;
    cin>>alo>>balo;
    go[alo][balo]=go[balo][alo]=1;
}*/
void run(int n) {
    //srand(time(NULL));
    for (i=1;i<=n;i++)
        parent[i]=i;
    for (j=1;j<n;j++) {
        for (i=1;i<=n;i++)
            fix[i]=0;
        for (i=1;i<=n;i++)
            fix[parent[i]]=1;
        k=0;
        for (i=1;i<=n;i++)
            if (fix[i])
                mas[k++]=i;
        while (true) {
            srand(time(NULL));
            for (i=0;i<k;i++)
                fix[mas[i]]=(rand()%2+rand()%2)%2;
            sa=sb=0;
            for (i=0;i<=n;i++)
                a[i]=b[i]=0;
            for (i=1;i<=n;i++) {
                if (fix[parent[i]])
                    a[sa++]=i;
                else
                    b[sb++]=i;
            }q++;
            if (query(sa,sb,a,b))
                break;
        }
        l=1;r=sa;
        while (l!=r) {
            m=(l+r)/2;
            for (i=0;i<=n;i++)
                mas[i]=0;
            for (i=l;i<=m;i++)
                mas[i-l]=a[i-1];
            if (query(m-l+1,sb,mas,b))
                r=m;
            else
                l=m+1;
        }
        x=l;
        l=1;r=sb;
        while (l!=r) {
            m=(l+r)/2;
            for (i=0;i<=n;i++)
                mas[i]=0;
            for (i=l;i<=m;i++)
                mas[i-l]=b[i-1];
            if (query(sa,m-l+1,a,mas))
                r=m;
            else
                l=m+1;
        }
        int solo=parent[a[x-1]];
        for (i=1;i<=n;i++)
            if (parent[i]==solo)
                parent[i]=parent[b[l-1]];
        setRoad(b[l-1],a[x-1]);
    }
    return;
}/*
int main() {
    cin>>n;
    cin>>alo>>balo;
    go[alo][balo]=go[balo][alo]=1;
    run(n);
    return 0;
}*/
# 결과 실행 시간 메모리 Grader output
1 Incorrect 200 ms 504 KB Number of queries more than 3000 out of 1500
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 424 ms 568 KB Number of queries more than 5000 out of 2500
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 636 ms 508 KB Number of queries more than 4500 out of 2250
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 572 ms 556 KB Number of queries more than 4000 out of 2000
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 504 ms 504 KB Number of queries more than 3550 out of 1775
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 464 ms 632 KB Number of queries more than 3250 out of 1625
2 Halted 0 ms 0 KB -