P2192 HXY玩卡片
阿新 • • 發佈:2017-08-09
urn algorithm name namespace b+ 選擇 -m 組成 滿足
題目描述
HXY得到了一些卡片,這些卡片上標有數字0或5。現在她可以選擇其中一些卡片排成一列,使得排出的一列數字組成的數最大,且滿足被90整除這個條件。同時這個數不能含有前導0,即0不能作為這串數的首位。如果不能排出這樣的數,輸出“-1”。
輸入輸出格式
輸入格式:
第一行,卡片的個數n。
第二行,分別給出了這n個數(只能為數字5或0)。
輸出格式:
僅一行,如果可以排出,則輸出這個數。否則輸出“-1”。
輸入輸出樣例
輸入樣例#1:4 5 0 5 0輸出樣例#1:
0輸入樣例#2:
11 5 5 5 5 5 5 5 5 0 5 5輸出樣例#2:
5555555550
說明
數據範圍:
對於30%的數據,n<=10;
對於20%的數據,僅含數字5;
對於100%的數據,n<=1000。
特潘
#include<iostream> #include<cstdio> #include<string.h> #include<algorithm> using namespace std; long long a,b,n; int dfs(long long tot) { if(a) a--,dfs(tot*10+5),a++; if(b) b--,dfs(tot*10),b++; if(tot%9==0) { cout<<tot*10; exit(0); } } int main() { cin>>n; for(int i=1,x;i<=n;i++) { scanf("%d",&x); if(x==5) a++; else b++; } if(b==0&&a<9) { cout<<-1; return 0; } if(b>0&& a<9) { cout<<0; return 0; } if(b>0 && a>=9) { for (int i=1;i<=a/9*9;i++) cout<<5; for (int i=1;i<=b;i++) cout<<0; } return 0; }
P2192 HXY玩卡片