Submission #690596

# Submission time Handle Problem Language Result Execution time Memory
690596 2023-01-30T10:24:45 Z alexdd Mouse (info1cup19_mouse) C++17
0 / 100
1 ms 208 KB
#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
int n;
vector<int> p;
bool done[300];
void solve(int N)
{
    ///reseteaza chestii
    n=N;
    p.clear();
    p.push_back(0);
    for(int i=1;i<=n;i++)
    {
        done[i-1]=0;
        done[i]=0;
        p.push_back(i);
    }
    while(query(p)<n)
        random_shuffle(p.begin()+1,p.end());
    return;
    while(1)
    {
        int x=query(p);
        if(x==n)
            return;
        if(x==0)
            break;
        random_shuffle(p.begin()+1,p.end());
    }
    int cur=0,aux;
    for(int i=1;i<n-1;i++)
    {
        if(done[i])
            continue;
        for(int j=i+1;j<=n;j++)
        {
            if(done[j])
                continue;
            ///verific daca p[j] ar trebui sa fie pe pozitia i
            swap(p[j],p[i]);
            aux=query(p);
            if(aux==n)
                return;
            if(aux==cur)///nu ii bine
                continue;
            if(aux==cur+2)
            {
                done[i]=1;
                done[j]=1;
                cur=aux;
                break;
            }
            ///aux = cur+1
            int ava=j+1;
            if(j+1>n)
                ava=j-1;
            swap(p[j],p[ava]);
            if(query(p)==aux)
            {
                done[i]=1;
                cur=aux;
                break;
            }
        }
    }
    int x=query(p);
    if(x==n)
        return;
    swap(p[n],p[n-1]);
    x=query(p);
    if(x==n)
        return;
    while(query(p)<n)
        random_shuffle(p.begin()+1,p.end());
    return;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 208 KB Integer 0 violates the range [1, 7]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 208 KB Integer 0 violates the range [1, 7]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 208 KB Integer 0 violates the range [1, 7]
2 Halted 0 ms 0 KB -