답안 #944116

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
944116 2024-03-12T08:39:34 Z shoryu386 자동 인형 (IOI18_doll) C++17
2 / 100
47 ms 12812 KB

#include <bits/stdc++.h>
using namespace std;
int ptr = -1;
vector<int> xLead, yLead;
#include "doll.h"

int construct(vector<int> item){
	if (item.size() == 1){
		return item[0];
	}
	
	vector<int> itemLeft, itemRight;
	for (int x = 0; x < item.size(); x+=2){
		itemLeft.push_back(item[x]);
	}
	for (int x = 1; x < item.size(); x+=2){
		itemRight.push_back(item[x]);
	}
	
	int curNode = ptr;
	
	//cerr << "Construct " << curNode << '\n';
	//for (auto y : item) cerr << y << ' ';
	//cerr << '\n';
	
	ptr--;
	xLead[curNode] = ( construct(itemLeft) );
	yLead[curNode] = ( construct(itemRight) );
	
	return curNode;
}


void create_circuit(int m, std::vector<int> A) {
	int n = A.size();
	xLead.clear(); yLead.clear();
	xLead.resize(2*n + 100); yLead.resize(2*n + 100);
	ptr = -1;
	
	vector<int> leads[m+1];
	
	leads[0].push_back(A[0]);
	for (int x = 0; x < n-1; x++){
		leads[A[x]].push_back(A[x+1]);
	}
	leads[A[n-1]].push_back(0);
	
	vector<int> connection(m+1);
	for (int x = 0; x <= m; x++){
		if (leads[x].size() == 0){
			connection[x] = x;
		}
		else if (leads[x].size() == 1){
			connection[x] = leads[x][0];
		}
		else{
			//construct binary tree
			connection[x] = construct(leads[x]);
		}
		
		//cerr << "leads " << x << '\n';
		//for (auto y : leads[x]){
		//	cerr << y << ' ';
		//}
		//cerr << '\n';
	}
	
	xLead.resize(-ptr - 1); yLead.resize(-ptr - 1);
	answer(connection, xLead, yLead);
}

Compilation message

doll.cpp: In function 'int construct(std::vector<int>)':
doll.cpp:15:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   15 |  for (int x = 0; x < item.size(); x+=2){
      |                  ~~^~~~~~~~~~~~~
doll.cpp:18:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   18 |  for (int x = 1; x < item.size(); x+=2){
      |                  ~~^~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 19 ms 7560 KB Output is correct
3 Correct 20 ms 6236 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 9 ms 3932 KB Output is correct
6 Correct 24 ms 9308 KB Output is correct
7 Correct 1 ms 600 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 19 ms 7560 KB Output is correct
3 Correct 20 ms 6236 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 9 ms 3932 KB Output is correct
6 Correct 24 ms 9308 KB Output is correct
7 Correct 1 ms 600 KB Output is correct
8 Runtime error 47 ms 12812 KB Execution killed with signal 6
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 19 ms 7560 KB Output is correct
3 Correct 20 ms 6236 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 9 ms 3932 KB Output is correct
6 Correct 24 ms 9308 KB Output is correct
7 Correct 1 ms 600 KB Output is correct
8 Runtime error 47 ms 12812 KB Execution killed with signal 6
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -