답안 #1048517

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1048517 2024-08-08T08:03:10 Z IUA_Hasin 식물 비교 (IOI20_plants) C++17
0 / 100
0 ms 348 KB
#include "plants.h"
#include <bits/stdc++.h>

#define ll						long long

using namespace std;

ll a, n;
vector<ll> arr;

void init(int k, std::vector<int> r) {
	a = k;
	n = r.size();
	for(int i=0; i<r.size(); i++){
		arr.push_back(r[i]);
	}

	return;
}

int compare_plants(int x, int y) {
	ll temp = arr[x];
	if(x==n-1){
		if(y==0){
			if(temp>0){
				return 1;
			} else {
				return -1;
			}
		} else {
			return 0;
		}
	} else {
		if(y==x+1){
			if(temp>0){
				return 1;
			} else {
				return -1;
			}
		} else {
			return 0;
		}
	}
	return 0;
}

Compilation message

plants.cpp: In function 'void init(int, std::vector<int>)':
plants.cpp:14:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |  for(int i=0; i<r.size(); i++){
      |               ~^~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -