# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1101182 | Aviansh | 저울 (IOI15_scales) | C++17 | 1 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <bits/stdc++.h>
using namespace std;
void init(int T) {
}
void placemin(int W[], int st){
//cout << "getting lightest in : " << W[st] << " " << W[st+1] << " " << W[st+2] << "\n";
int a = getLightest(W[st],W[st+1],W[st+2]);
//cout << a << "\n";
if(a==W[st+1]){
//cout << "swapped" << st+1 << " " << st << "\n";
swap(W[st+1],W[st]);
}
if(a==W[st+2]){
//cout << "swapped" << st+2 << " " << st << "\n";
swap(W[st+2],W[st]);
}
for(int i = 0;i<6;i++){
//cout << W[i] << " ";
}
//cout << "\n";
}
void orderCoins() {
/* ... */
int W[] = {1, 2, 3, 4, 5, 6};
placemin(W,3);
placemin(W,2);
placemin(W,1);
placemin(W,0);
placemin(W,3);
placemin(W,2);
placemin(W,1);
placemin(W,3);
placemin(W,2);
placemin(W,3);
int a = getHeaviest(W[3],W[4],W[5]);
if(W[5]!=a){
swap(W[4],W[5]);
}
answer(W);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |