제출 #419778

#제출 시각아이디문제언어결과실행 시간메모리
419778Pbezz저울 (IOI15_scales)C++14
0 / 100
1 ms424 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[1]);

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

	if(getMedian(m,j-1,j)==j&&j!=2){
	swap(W[j-1],W[j]);
	}

	}
}











    answer(W);
}

컴파일 시 표준 에러 (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...