제출 #785732

#제출 시각아이디문제언어결과실행 시간메모리
785732QwertyPi커다란 상품 (IOI17_prize)C++14
97.54 / 100
51 ms1044 KiB
#include "prize.h"
#include <bits/stdc++.h>

using namespace std;

map<int, vector<int>> M, Li;
vector<int> self_ask(int i){
	if(!M.count(i)) M[i] = ask(i); vector<int> r = M[i];
	Li[r[0] + r[1]].push_back(i);
	return r;
}

vector<int> b;

bool failed = false, done = false, un = true;
mt19937 rng(0);
int cc, ans;
void solve(int l, int r, int lc, int rc){
	if(l > r || lc == rc) return;
	int L = (l + r) / 2, R = (l + r) / 2 + 1, F = 0;
	int c; vector<int> a;
	while(true){
		c = F ? R++ : L--; F ^= 1;
		a = self_ask(c);
		if(a[0] + a[1] == 0){
			done = true; failed = true; ans = c;
		}
		if(un || a[0] + a[1] > cc){
			failed = true; un = false; cc = a[0] + a[1];
			return;
		}
		if(a[0] + a[1] == cc || R - L - 1 == rc - lc){
			break;
		}
	}
	if(R - L + 1 == rc - lc && a[0] + a[1] != cc) return;
	if(c == L + 1){
		solve(l, L, lc, a[0]); if(failed) return;
		solve(R, r, a[0] + (R - L - 2), rc); if(failed) return;
	}else{
		solve(l, L, lc, a[0] - (R - L - 2)); if(failed) return;
		solve(R, r, a[0], rc); if(failed) return;
	}
}

int find_best(int n) {
	cc = n;
	do{
		failed = false;
		solve(0, n - 1, 0, cc);
		if(done) break;
	}while(failed);
	if(done){
		return ans;
	}
}

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

prize.cpp: In function 'std::vector<int> self_ask(int)':
prize.cpp:8:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
    8 |  if(!M.count(i)) M[i] = ask(i); vector<int> r = M[i];
      |  ^~
prize.cpp:8:33: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
    8 |  if(!M.count(i)) M[i] = ask(i); vector<int> r = M[i];
      |                                 ^~~~~~
prize.cpp: In function 'int find_best(int)':
prize.cpp:56:1: warning: control reaches end of non-void function [-Wreturn-type]
   56 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...