답안 #908245

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
908245 2024-01-16T10:16:32 Z zyq181 Coreputer (IOI23_coreputer) C++17
0 / 100
1 ms 344 KB
#include "coreputer.h"
#include <bits/stdc++.h>
using namespace std;

vector<int> malfunctioning_cores(int N){
	vector<int> them;
	int cur;
	int ret;
	vector<int> q;
	for(int a=0; a<N; a++){
		cur = a;
		q.push_back(cur);
		ret = run_diagnostic(q);
		if(ret != -1){
			them.push_back(cur);
			break;
		}
	}
	for(int a=cur+1; a<N; a++){
		q.pop_back();
		q.push_back(a);
		if(run_diagnostic(q) != -1){
			them.push_back(a);
		}
	}
	int cmp = them.size(); //either half + 1 or half + 1/2
	int k;
	if(ret == 1){
		k = cmp;
	}
	else{
		k = cmp - 1;
	}
	q.clear();
	for(int a=0; a<k; a++){	
		q.push_back(them[a]);
	}
	for(int a=0; a<cur; a++){
		q.pop_back();
		q.push_back(a);
		if(run_diagnostic(q) != -1){
			them.push_back(a);
		}
	}
	return q;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -