답안 #149906

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
149906 2019-09-01T07:22:41 Z Outfraware Boat People(#3577, c4big, bsyo2k, cepiloth) On the Grid (FXCUP4_grid) C++17
컴파일 오류
0 ms 0 KB
#include "grid.h"

typedef std::vector<int> VI;


bool visit[1001] = { 0, };
VI v(N);

// ģ�� ���� �����
VI &makeSeq(int N, int start, VI &found, VI &len_friend) {
	//VI v(N);

	/*for (int i = N - 1; i >= 0; --i) {
		if (!len_friend[i])
			break;

		v[i] = len_friend[i];
	}*/

	for (int i = 0, count = 0; count < N; ++count) {
		int num = (start + count) % N;

		if (visit[num])
			continue;

		v[i++] = num;
	}

	return v;
}

VI SortDisks(int N) {
	VI found(N, 0);
	VI len_friend(N, 0);

	int max_h = N + (N - 1);

	for (int L = N; L >= 1; --L) {
		for (int i = 0; i < N; ++i) {
			//VI v = makeSeq(N, i, found, len_friend);
			makeSeq(N, i, found, len_friend);
			int X = PutDisks(v);

			if (X != max_h)
				continue;

			found[v[0]] = L;
			visit[v[0]] = true;
			len_friend[L - 1] = v[0];
			v[L - 1] = v[0];
			--max_h;
			break;
		}
	}
	
	return found;
}


Compilation message

grid.cpp:7:6: error: 'N' was not declared in this scope
 VI v(N);
      ^