답안 #1050122

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1050122 2024-08-09T07:34:31 Z mychecksedad 식물 비교 (IOI20_plants) C++17
0 / 100
0 ms 444 KB
#include "plants.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define pb push_back
#define vi vector<int>
const int N = 3e5;

int a[N], n;
void init(int k, std::vector<int> r) {
	n = r.size();
	for(int i = 0; i < n; ++i) a[i] = 0;
	if(2*k > n){
		int mx = 0;
		int f = n-1;
		for(int rep = 0; rep < n; ++rep){
			for(int i = 0; i < n; ++i){
				mx = max(mx, r[i]);
			}
			int l = n, rr = -1;
			for(int i = 0; i < n; ++i){
				if(r[i] == mx){
					l = min(l, i);
					rr = max(rr, i);
				}
			}
			int x;
			if(l + k < rr) x = rr;
			else x = l;
			a[x] = f--;
			r[x] = -n-n;	
			for(int i = x; i > x - k; --i) r[(i+n)%n]++;
		}
	// for(int i = 0; i < n; ++i) cout << a[i] << ' ';
	}else{

	}
}

int compare_plants(int x, int y) {
	return a[x] > a[y] ? -1 : (a[x] < a[y] ? 1 : 0);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 444 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB Output isn't correct
3 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 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 444 KB Output isn't correct
3 Halted 0 ms 0 KB -