当前位置:   article > 正文

CCF CSP 202209_csp 202209-5

csp 202209-5

第一题 如此编码

在这里插入图片描述

#include<stdio.h>
#include<string.h>
#include<algorithm>

int a[10000];
long count[10000];

int main()
{
	int n,m;
	scanf("%d%d",&n,&m);
	count[0]=1;
	for (int i=0;i<n;i++){
		scanf("%d",&a[i]);
		count[i+1] = count[i]*a[i]; 
	}
	int lasth = 0;
	for(int i=0;i<n;i++){
		int h = (m%count[i+1]);
		int t = (h-lasth)/count[i];
		printf("%d ",t);
		lasth=h;
	}
	return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

第二题

在这里插入图片描述

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int a[40];
int dp[400000];
int main(){
	int n,m;
	scanf("%d%d",&n,&m);
	int sum=0;
	for (int i=0;i<n;i++){
		scanf("%d",&a[i]);
		sum+=a[i];
	}
	memset(dp,0,400000-1);
	for (int i=0;i<n;i++){
		for(int j=sum;j>=a[i];j--){
			dp[j] = max(dp[j],dp[j-a[i]]+a[i]);	
		}
	}
	
	for(int i=m;i<=sum;i++)
	    if(dp[i]>=m) {
			printf("%d",i);
			break;
		}
	return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

第三题

#include <iostream>
#include <vector>
#include <set>

using namespace std;

typedef long long LL;

set<LL> sd[1050], su;
struct node
{
    LL d, u, r;
}a;

vector<node> v[1050];
LL n, ri, mi, d, u, r, pi;

int main()
{
    cin >> n;
    for (int i = 0; i < n; i ++ ) // i:生成名单这一天
    {
        cin >> ri >> mi;
        
        for (int j = 0; j < ri; j ++ ) // ri个风险地区
        {
            cin >> pi;
            for (int k = i; k < i + 7; k ++ ) sd[k].insert(pi); // pi地区i ~ i+6天都是风险地区
        }
        
        for (int j = 0; j < mi; j ++ ) // 
        {
            cin >> d >> u >> r;
            if (d < 0) continue;
            if (!sd[d].count(r)) continue; // 到访的地区在到访的那一日不处于风险状态,肯定无风险
            v[i].push_back({d, u, r}); // 存储第i天的漫游数据
        }
        
        // 对漫游信息进行判断,从第i-6天开始.因为7天前的用户漫游数据有可能到现在还是风险的
        for (int j = max(0, i - 6); j <= i; j ++ )
        {
            for (int k = 0; k < v[j].size(); k ++ )
            {
                d = v[j][k].d;
                u = v[j][k].u;
                r = v[j][k].r;
                
                // 1.该用户的d要在7日内
                // 2.该用户在近7日内到访的地区在到访的那一日处于风险状态
                // 3.上述存在风险的地区自到访日(d)至生成名单当日(i)持续处于风险状态

                bool flag = 1;
                if (d <= i - 7) continue; // 要求1
                for (int l = d; l <= i; l ++ ) // 要一直持续到当前i这一天 要求2&3
                    flag = flag & sd[l].count(r);
                if (flag) su.insert(u);
            }
        }
        
        cout << i << " ";
		for (auto it : su) cout << it << " ";
		cout << endl;
		su.clear();
    }
    
    return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/318748
推荐阅读
相关标签
  

闽ICP备14008679号