답안 #663402

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
663402 2022-11-26T22:19:35 Z YENGOYAN 식물 비교 (IOI20_plants) C++14
컴파일 오류
0 ms 0 KB
#include "plants.h"

using namespace std;

void init(int k, std::vector<int> r) {
    // x, y
    //
    //int n = r.size();

	return;
}

int compare_plants(int x, int y) {
	if(r[x] > r[y]) return 0;
	return 1;
}

Compilation message

plants.cpp: In function 'int compare_plants(int, int)':
plants.cpp:14:5: error: 'r' was not declared in this scope
   14 |  if(r[x] > r[y]) return 0;
      |     ^