cf 151.div2 C - Beauty Pageant

简介:

C - Beauty Pageant

 

      很简单的一道题,就是给出k种不同的组合就可以了,比赛的时候没有注意到k的范围,直接dfs,果断超时,k只有(n+1)n/2种,所以可以直接枚举即可……

      以后要看好范围再写

   

dfs代码(修改后)

/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <map>
#define INF 1E9
using namespace std;
int s[50];
int A[51],n,k;
map<int,bool> vis;
int dfs(int remind,int i,int ans)
{
    int r;
    if(remind==0)
    {
        if(vis[ans])return 0;
        vis[ans]=1;
        return ans;
    }
    if(remind>=2)
    {
        A[remind]=--i;
        return dfs(remind-1,i,ans+s[i]);
    }
    for(i--;i>=0;i--)
    {
        A[remind]=i;
        r=dfs(remind-1,i,ans+s[i]);
        if(r!=0)return r;
    }
    return 0;
}
int main()
{
    int i,j;
    scanf("%d%d",&n,&k);
    for(i=0;i<n;i++)
      scanf("%d",&s[i]);
    sort(s,s+n);
    int ans;
    i=1;
    while(k--)
    {
        ans=dfs(i,n,0);
        if(ans==0){i++;k++;continue;}
        printf("%d",i);
        for(j=i;j>0;j--)
         printf(" %d",s[A[j]]);
        puts("");
    }
}


 

枚举代码:

#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
  int a[51];
  int n,k,s=0,j=0,i,p;
  cin>>n>>k;
  for(i=0;i<n;i++)cin>>a[i];
  sort(a,a+n);
  for(i=0;i<k;i++)
  {
     cout<<s+1<<" ";
     for(p=0;p<s;p++)cout<<a[n-1-p]<<" ";
     cout<<a[j++]<<endl;
     if(j==n-s){s++;j=0;}
  }
  return 0;
}


 

目录
相关文章
../../..xxx.go:46:18: aa.Bbb undefined (type *"xx/xxx/xx".Ccc has no field or method Bbb)
../../..xxx.go:46:18: aa.Bbb undefined (type *"xx/xxx/xx".Ccc has no field or method Bbb)
|
机器学习/深度学习 人工智能
B2. Wonderful Coloring - 2<734.div3>
B2. Wonderful Coloring - 2<734.div3>
63 1
|
SQL Oracle 关系型数据库
BC范式(Boyce-Codd Normal Form,BCNF)
BC范式(Boyce-Codd Normal Form,BCNF)是关系数据库设计中的一个规范化级别,它建立在第三范式(3NF)的基础上,通过进一步消除非主属性对于候选键的部分函数依赖来消除主属性对于候选键的传递依赖
675 1
|
Python
求a+aa+aaa+aaa...a的值
求a+aa+aaa+aaa...a的值
198 0
GE IS215UCVEH2AE VMIVME-017614-132 350-017614-132D
GE IS215UCVEH2AE VMIVME-017614-132 350-017614-132D
70 0
GE IS215UCVEH2AE VMIVME-017614-132 350-017614-132D
GE IS215UCVEH2AB VMIVME-7614-132 350-007614-132C
GE IS215UCVEH2AB VMIVME-7614-132 350-007614-132C
70 0
GE IS215UCVEH2AB VMIVME-7614-132 350-007614-132C
|
Linux
page fault带来的性能问题
Linux进程如何访问内存 Linux下,进程并不是直接访问物理内存,而是通过内存管理单元(MMU)来访问内存资源。原因后面会讲到。 为什么需要虚拟内存地址空间 假设某个进程需要4MB的空间,内存假设是1MB的,如果进程直接使用物理地址,这个进程会因为内存不足跑不起来。既然进程不是直接访问
22015 0