A. Jeff and Digits1000 / 构造
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Jeff and Digits1000 / 构造相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/352/A
构造前面必须是9的倍数个五,后面有多少个0输出多少个,至少一个。
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
int a[N],n;
map<int,int>mp;
int main(void)
{
cin>>n;
for(int i=1;i<=n;i++) cin>>a[i],mp[a[i]]++;
int len1=mp[5]/9;
int len2=mp[0];
if(len1&&len2)
{
for(int i=1;i<=len1;i++) cout<<"555555555";
for(int i=1;i<=len2;i++) cout<<"0";
}
else if(mp[0]) cout<<"0";
else cout<<-1;
return 0;
}
以上是关于A. Jeff and Digits1000 / 构造的主要内容,如果未能解决你的问题,请参考以下文章
CF&&CC百套计划3 Codeforces Round #204 (Div. 1) A. Jeff and Rounding
A. Mike and palindrome1000 / 思维