제출 #419800

#제출 시각아이디문제언어결과실행 시간메모리
419800PbezzScales (IOI15_scales)C++14
26.32 / 100
1 ms256 KiB
#include "scales.h"
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>

using namespace std;
using namespace __gnu_pbds;

#define ll long long
#define pb push_back
typedef pair<ll,ll> pii;

typedef tree<ll, null_type, less<ll>, rb_tree_tag, tree_order_statistics_node_update> indexed_set;

const ll MAXN = 2e5+5;
const ll INF = 1e15+7;

void init(int T) {
    /* ... */
}

void orderCoins() {
    /* ... */
    int W[] = {1, 2, 3, 4, 5, 6};

	int m1,m2,m,i,j;
	m1 = getLightest(1,2,3);
	m2 = getLightest(4,5,6);


	if(m1==1){
	m = getLightest(m1,m2,2);
	}else{
	m = getLightest(m1,m2,1);
	}
	swap(W[m-1],W[0]);

	for(i=1;i<5;i++){
	for(j=2;j<6-i+1;j++){

	if(getMedian(W[0],W[j-1],W[j])==W[j]){
	swap(W[j],W[j-1]);
	}

	}
}











    answer(W);
	return;
}

컴파일 시 표준 에러 (stderr) 메시지

scales.cpp: In function 'void init(int)':
scales.cpp:17:15: warning: unused parameter 'T' [-Wunused-parameter]
   17 | void init(int T) {
      |           ~~~~^
#Verdict Execution timeMemoryGrader output
Fetching results...