Submission #799851

# Submission time Handle Problem Language Result Execution time Memory
799851 2023-08-01T06:36:24 Z n3rm1n CONSUL (info1cup19_consul) C++17
0 / 100
1 ms 208 KB
#include<bits/stdc++.h>
#include "grader.h"
#define endl '\n'
using namespace std;

void speed()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
}

void solve(int N)
{
    map < int, int > checked;
    int atleast = N/3 + 1;
    vector < int > index;
    for (int i = 1; i <= N; ++ i)
        index.push_back(i);
    random_shuffle(index.begin(), index.end());
    vector < int > g;
    for (int i = 0; i < min(N, 30); ++ i)
    {
        cout << index[i] << endl;
        int x = kth(index[i]);

        if(checked[x])continue;
        else
        { g.push_back(x);
        }
        checked[x] = 1;
    }
    for (int i = 0; i < g.size(); ++ i)
    {
        if(cnt(g[i]) >= atleast)
        {
            say_answer(g[i]);
            return;
        }
    }
    say_answer(-1);
}

Compilation message

consul.cpp: In function 'void solve(int)':
consul.cpp:33:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |     for (int i = 0; i < g.size(); ++ i)
      |                     ~~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB DO NOT PRINT ANYTHING TO STANDARD OUTPUT
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 208 KB DO NOT PRINT ANYTHING TO STANDARD OUTPUT
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB DO NOT PRINT ANYTHING TO STANDARD OUTPUT
2 Halted 0 ms 0 KB -