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

codeforces 459C Pashmak and Buses(模拟,组合数A)

时间:2014-08-16 15:03:41      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   数据   for   

题目

 

 

跑个案例看看结果就知道了:8 2 3

 

题目给的数据是 n,k,d

 

相当于高中数学题:k个人中选择d个人排成一列,有多少种不同的方案数,列出其中n中就可以了。

 

 

bubuko.com,布布扣
#include<iostream>
#include<algorithm>
#include<string>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
#define ll __int64
int mp[1005][1005];

int main(){
    int n,k,d;
    scanf("%d%d%d",&n,&k,&d);
    
    int ddd=d,kkk=1;

    int flag=0;
    while(ddd--)
    {
        kkk=kkk*k;
        if(kkk>=n)flag=1;
    }

    if(flag==0)
        printf("-1\n");
    else {

        int kk,num=1,kkk=1;
        for(int i=0;i<d;i++)
        {
            kk=1;
            for(int j=0;j<n;j++)
            {
                mp[i][j]=kk;
                if(num==kkk)kk++,kkk=0;
                kkk++;
                if(kk>k)kk=kk-k;
            }
            num=num*k;
        }

        for(int i=0;i<d;i++)
        {
            int yi=0;
            for(int j=0;j<n;j++)
            {
                if(yi)printf(" ");yi=1;
                printf("%d",mp[i][j]);
            }
            puts("");
        }
    }
    return 0;
}
View Code

 

codeforces 459C Pashmak and Buses(模拟,组合数A),布布扣,bubuko.com

codeforces 459C Pashmak and Buses(模拟,组合数A)

标签:style   blog   http   color   os   io   数据   for   

原文地址:http://www.cnblogs.com/laiba2004/p/3916392.html

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