程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> CF 246C Beauty Pageant

CF 246C Beauty Pageant

編輯:C++入門知識

題目大意:
n(1<=n<=50)個美女,魅力值各不相同。
有k(k<=n*(n+1)/2)天的選美比賽,每天派去比賽的美女們的魅力值之和都不同。
求這k天要如何安排。

題目思路:
重點在於,魅力值各不相同和k<=n*(n+1)/2,為毛k會有一個這種條件呢?
先看魅力值各不相同,所以如果假設把美女的魅力值按降序排序。
那麼當派i人時,按以上派法:
a[1],a[2],...,a[i-1],a[i]
a[1],a[2],...,a[i-1],a[i+1]
a[1],a[2],...,a[i-1],a[i+2]
...
a[1],a[2],...,a[i-1],a[n]
因為各不相同,所以這些魅力值和,肯定不等。
再假設當派i+1人時,派法如下:
a[1],a[2],...,a[i],a[i+1]
a[1],a[2],...,a[i],a[i+2]
a[1],a[2],...,a[i],a[i+3]
...
a[1],a[2],...,a[i],a[n] www.2cto.com
和派i人類似,而且因為各不相同,所以這些魅力值和肯定和派i人的不等。
從這邊也發現了,i人的派法有n-i+1種,i+1人的派法有n-(i+1)+1種。
所以全部的派法種數sum(1~n)=n*(n+1)/2,剛好是k的最大上限,所以這種派法就可以滿足題目要求。


代碼:
[cpp] 
#include <stdlib.h> 
#include <string.h> 
#include <stdio.h> 
#include <ctype.h> 
#include <math.h> 
#include <stack> 
#include <queue> 
#include <map> 
#include <set> 
#include <vector> 
#include <string> 
#include <iostream> 
#include <algorithm> 
using namespace std; 
 
#define ll __int64 
#define ls rt<<1 
#define rs ls|1 
#define lson l,mid,ls 
#define rson mid+1,r,rs 
#define middle (l+r)>>1 
#define eps (1e-8) 
#define type int 
#define clr_all(x,c) memset(x,c,sizeof(x)) 
#define clr(x,c,n) memset(x,c,sizeof(x[0])*(n+1)) 
#define MOD 1000000007 
#define inf 0x3f3f3f3f 
#define pi acos(-1.0) 
#define _max(x,y) (((x)>(y))? (x):(y)) 
#define _min(x,y) (((x)<(y))? (x):(y)) 
#define _abs(x) ((x)<0? (-(x)):(x)) 
#define getmin(x,y) (x= (x<0 || (y)<x)? (y):x) 
#define getmax(x,y) (x= ((y)>x)? (y):x) 
template <class T> void _swap(T &x,T &y){T t=x;x=y;y=t;} 
int TS,cas=1; 
const int M=50+5; 
int n,kk,a[M]; 
 
void run(){ 
    int i,j,k; 
    for(i=1;i<=n;i++) 
        scanf("%d",&a[i]); 
    sort(a+1,a+n+1); 
    for(i=1;i<=n && kk;i++){ 
        for(j=1;j<=n-i+1 && kk;j++){ 
            printf("%d ",i); 
            for(k=n;k>n-i+1;k--) 
                printf("%d ",a[k]); 
            printf("%d\n",a[j]); 
            kk--; 
        } 
    } 

 
void preSof(){ 

 
int main(){ 
    //freopen("input.txt","r",stdin); 
    //freopen("output.txt","w",stdout); 
    preSof(); 
    //run(); 
    while(~scanf("%d%d",&n,&kk)) run(); 
    //for(scanf("%d",&TS);cas<=TS;cas++) run(); 
    return 0; 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved