제출 #800738

#제출 시각아이디문제언어결과실행 시간메모리
800738firewater저울 (IOI15_scales)C++14
0 / 100
1 ms300 KiB
#include "scales.h" #include <assert.h> #include <stdio.h> #include <stdlib.h> #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #define ll long long using namespace std; // int getHeaviest(int A, int B, int C) // int getMedian(int A, int B, int C) // int getLightest(int A, int B, int C) // int getNextLightest(int A, int B, int C, int D) #define N 100 int w,x,y,z,now,a[N],v[N],ans[6]; void init(int T) { /* ... */ } void get(int a1,int a2,int a3,int a4,int a5,int a6) { ans[0]=a1; ans[1]=a2; ans[2]=a3; ans[3]=a4; ans[4]=a5; ans[5]=a6; return; } void orderCoins() { /* ... */ a[1]=getLightest(1,2,3); a[2]=getMedian(1,2,3); a[3]=6-a[1]-a[2]; a[4]=getLightest(4,5,6); a[5]=getMedian(4,5,6); a[6]=15-a[4]-a[5]; if(getLightest(a[1],a[2],a[4])==a[4]){ swap(a[1],a[4]); swap(a[2],a[5]); swap(a[3],a[6]); } v[a[1]]=1; v[a[2]]=2; v[a[3]]=3; x=getNextLightest(a[1],a[2],a[3],a[4]); y=getNextLightest(a[1],a[2],a[3],a[5]); z=getNextLightest(a[1],a[2],a[3],a[6]); if(v[x]<=1)x=y=z=4; else if(v[y]<=1)y=z=4; else if(v[z]<=1)z=4; now=0; for(int i=1;i<=4;++i){ if(x==i)ans[now++]=a[4]; if(y==i)ans[now++]=a[5]; if(z==i)ans[now++]=a[6]; if(i<=3)ans[now++]=a[i]; } answer(ans); }

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

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