# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
20876 | kdh9949 | 생일수 I (GA4_birthday1) | C++14 | 109 ms | 13652 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <stdio.h>
#include <queue>
using namespace std;
struct mindol{
int three,five,eight;
bool operator<(const mindol &a)const{
int digit=three+five+eight;
int adigit=a.three+a.five+a.eight;
if(digit==adigit){
if(three==a.three){
if(five==a.five){
return eight<a.eight;
}
return five<a.five;
}
return three<a.three;
}
return digit<adigit;
}
}ans[1000010];
queue<mindol> q;
void init(){
for(int i=0;i<=1000000;i++)ans[i]={98769876,98769876,98769876};
q.push({0,0,0});
mindol cur;
int sum;
while(!q.empty()){
cur=q.front();
sum=cur.three*3+cur.five*5+cur.eight*8;
q.pop();
if(!(cur<ans[sum]))continue;
ans[sum]=cur;
q.push({cur.three+1,cur.five,cur.eight});
q.push({cur.three,cur.five+1,cur.eight});
q.push({cur.three,cur.five,cur.eight+1});
}
}
int main()
{
init();
int t,n;
scanf("%d",&t);
for(int i=0;i<t;i++){
scanf("%d",&n);
if(ans[n].three==98769876){puts("-1");continue;}
for(int j=0;j<ans[n].three;j++)putchar('3');
for(int j=0;j<ans[n].five;j++)putchar('5');
for(int j=0;j<ans[n].eight;j++)putchar('8');
putchar('\n');
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |