# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
299411 | Pichon5 | 저울 (IOI15_scales) | C++17 | 1 ms | 288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <bits/stdc++.h>
#define vi vector<int>
#define pb push_back
using namespace std;
void init(int T) {
/* ... */
}
void orderCoins() {
/* ... */
vector<int>res;
vector<bool>vis;
vis.assign(7,false);
//-----
int a= getLightest(1,2,3);
int b= getLightest(4,5,6);
int c=1;
if(a==c){
c=2;
}
a=getLightest(a,b,c);
res.pb(a);
vis[a]=true;
//------
vector<int>v;
v.clear();
for(int i=1;i<=6;i++){
if(vis[i]==false){
v.push_back(i);
}
}
a=getLightest(v[0],v[1],v[2]);
b=getLightest(a,v[3],v[4]);
res.pb(b);
vis[b]=true;
//---------
v.clear();
for(int i=1;i<=6;i++){
if(vis[i]==false){
v.push_back(i);
}
}
a=getLightest(v[0],v[1],v[2]);
b=v[0];
if(a==b){
b=v[1];
}
c=getLightest(a,b,v[3]);
vis[c]=true;
res.pb(c);
//------------
v.clear();
for(int i=1;i<=6;i++){
if(vis[i]==false){
v.push_back(i);
}
}
a=getLightest(v[0],v[1],v[2]);
vis[a]=true;
res.pb(a);
//------------
v.clear();
for(int i=1;i<=6;i++){
if(vis[i]==false){
v.push_back(i);
}
}
a=getMedian(res[0],v[0],v[1]);
res.pb(a);
vis[a]=true;
for(int i=1;i<=6;i++){
if(vis[i]==false){
res.pb(i);
break;
}
}
int W[6];
for(int i=0;i<6;i++){
W[i]=res[i];
}
answer(W);
return ;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |