码迷,mamicode.com
首页 > 其他好文 > 详细

【枚举】bzoj1072 [SCOI2007]排列perm

时间:2014-09-12 20:40:14      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   div   sp   log   

暴力,next_permutation函数用于枚举出下一个排列。sscanf函数用于将字符串转化成数字。

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 using namespace std;
 5 int n,len,ans;
 6 long long x,t;
 7 char s[15];
 8 int main()
 9 {
10     scanf("%d",&n);
11     for(int i=1;i<=n;i++)
12       {
13         ans=0;
14         scanf("%s%lld",s,&x);
15         len=strlen(s);
16         sort(s,s+len);
17         sscanf(s,"%lld",&t);
18         if(!(t%x))ans++;
19         while(next_permutation(s,s+len))
20           {
21               sscanf(s,"%lld",&t);
22               if(!(t%x))ans++;
23           }
24         printf("%d\n",ans);
25       }
26     return 0;
27 }

 

【枚举】bzoj1072 [SCOI2007]排列perm

标签:style   blog   color   io   ar   for   div   sp   log   

原文地址:http://www.cnblogs.com/autsky-jadek/p/3969006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!