# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
909910 | PlayVoltz | Coreputer (IOI23_coreputer) | C++17 | 1 ms | 596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "coreputer.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
vector<int> malfunctioning_cores(int n){
vector<int> c(n, 0), vect;
int low=-1, high=n, end;
while (low+1<high){
int mid=(low+high)/2;
vect.clear();
for (int i=0; i<=mid; ++i)vect.pb(i);
int res=run_diagnostic(vect);
if (res>=0)high=mid, end=res;
else low=mid;
}
c[high]=1;
if (high==n-1)return c;
for (int i=0; i<high; ++i){
vect.clear();
for (int j=0; j<=high; ++j)if (i!=j)vect.pb(j);
if (run_diagnostic(vect)<0)c[i]=1;
}
if (end){
for (int i=high+1; i<n; ++i){
vect.clear();
for (int j=high; j<n; ++j)if (i!=j)vect.pb(j);
if (run_diagnostic(vect)<0)c[i]=1;
}
}
else{
for (int i=high+1; i<n; ++i){
vect.clear();
for (int j=high+1; j<n; ++j)if (i!=j)vect.pb(j);
if (run_diagnostic(vect)<0)c[i]=1;
}
}
return c;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |