# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
61718 | mAng0 | Library (JOI18_library) | C++17 | 734 ms | 704 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <vector>
#include "library.h"
using namespace std;
vector<int> global_M;
vector<int> ban;
vector<int> ans;
int n, last;
int task_one(int s, int e){
if(s == e) return s;
int mid = (s + e) / 2;
for(int i=0;i<n;i++) global_M[i] = 0;
for(int i=s;i<=mid;i++){
global_M[i] = 1;
}
int one = Query(global_M);
for(int i=0;i<n;i++) global_M[i] = 1 - global_M[i];
int two = Query(global_M);
if(one >= two) return task_one(s, mid);
else return task_one(mid+1, e);
}
int task_two(int s, int e){
if(s == e) return s;
int mid = (s + e) / 2;
for(int i=0;i<n;i++) global_M[i] = 0;
int cnt = 0;
for(int i=s;i<=mid;i++){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |