제출 #733304

#제출 시각아이디문제언어결과실행 시간메모리
733304Alex1298CONSUL (info1cup19_consul)C++14
0 / 100
1 ms208 KiB
#include <bits/stdc++.h>
#include <grader.h>

using namespace std;

int kth(int x);
int cnt(int x);
void say_answer(int x);

void solve(int n)
{
    auto seed = chrono::high_resolution_clock::now().time_since_epoch().count();
    mt19937 mt_rand(seed);
    auto yay = bind(uniform_int_distribution<int> (1, n), mt_rand);
    int poz;

    for(int i = 1; i<=25; i++)
    {
        poz = rand() % (n+1);

        if(cnt(poz) > n/3)
        {
            say_answer(poz);
            return ;
        }
    }

    say_answer(-1);
}

컴파일 시 표준 에러 (stderr) 메시지

consul.cpp: In function 'void solve(int)':
consul.cpp:14:10: warning: variable 'yay' set but not used [-Wunused-but-set-variable]
   14 |     auto yay = bind(uniform_int_distribution<int> (1, n), mt_rand);
      |          ^~~
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…