集训第一周解题报告

在第一场组队赛中,解出了两道题目A和B,涉及简单搜索和经典模型的模拟。赛后独立解决了C题,目前正致力于攻克G题。A题是一个关于寻找解的数量的问题,通过深度优先搜索解决,不需要复杂的标记过程。分析发现,蚂蚁行走过程中只需调整某些蚂蚁的方向即可确保所有蚂蚁离开,这涉及到最长上升子序列的理解和应用。
摘要由CSDN通过智能技术生成

第一场组队赛里只A了两题A和B,一道简单搜索一道经典模型的模拟题。

赛后过了C,正在努力做G。

A题:

给出一个数s要求找出用k个不同且小与等于n的数组成s的解的个数,简单DFS,从小到大搜索,标记数组都不需要。

#include<cstring>
#include<string>
#include<fstream>
#include<iostream>
#include<iomanip>
#include<cstdio>
#include<cctype>
#include<algorithm>
#include<queue>
#include<map>
#include<set>
#include<vector>
#include<stack>
#include<ctime>
#include<cstdlib>
#include<functional>
#include<cmath>
using namespace std;
#define PI acos(-1.0)
#define MAXN 100005
#define eps 1e-7
#define INF 0x7FFFFFFF
#define ff sqrt(5.0)
typedef long long ll;

int n,k,s;
int ans;
void dfs(int aa,int p,int sum){
    if(p==k){
        if(sum==s){
            ans++;
        }
        return ;
    }
    if(p>k) return ;
    if(sum>s)   return ;
    for(int i=aa+1;i<=n;i++)
	{
 		dfs(i,p+1,sum+i);
    }
}
int main(){
    int i,j;
    while(scanf("%d%d%d",&n,&k,&s)!=EOF){
        if(n==0||k==0||s==0)    break;
        ans = 0;
        for(int i=1;i<=n;i++){
            dfs(i,1,i);
        }
        printf("%d\n",ans);
    }
    return 0;
}
B题模拟&#
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值