# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
419790 | Pbezz | 저울 (IOI15_scales) | C++14 | 1 ms | 252 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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=i+1;j<6;j++){
if(getMedian(W[0],W[j-1],W[j])==W[j]){
swap(W[j],W[j-1]);
}
}
}
answer(W);
return;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |