codeforces 283C

Posted gavanwanggw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 283C相关的知识,希望对你有一定的参考价值。

给 n 中 钱币。以及每两种钱币的关系,表示,ai 的 个数 要大于 bi 组合成一个价值val,求方案数,好奇妙的一个处理方式,不得不说又学到了

#include<stdio.h>
#include<vector>
#include<cstring>
#include<iostream>
using namespace std;
const int mod = 1e9 + 7;
const int M = 1e5 + 1;
long long dp[M];
int a[500],in[500],father[500];

int main(){
   int n,m,t,u,v;
   while(cin >> n >> m  >> t){


    memset(in,0,sizeof(in));
    memset(father,0,sizeof(father));
    memset(dp,0,sizeof(dp));    int x = m;
       // memset(che,0,sizeof(che));
        for(int i=1;i<=n;i++) cin >> a[i];
        while(m --){
            cin >> u >> v;in[v] ++ ;
            father[u] = v;
        }

        for(int i=0;i<x;i++){
            int pos = 0;
            for(int j=1;j<=n;j++){
                if(father[j] && !in[j]){
                    pos = j;break;
                }
            }
           // cout << pos <<endl;
            if(!pos){puts("0");return 0;}
            int pre = father[pos];
            father[pos] = 0;
            in[pre] --;
            t -= a[pos];
            a[pre] += a[pos];
            if(t < 0){puts("0");return 0;}
        }
        dp[0] =1;

        for(int i=1;i<=n;i++){
            for(int j=a[i];j<=t;j++){
                dp[j] = (dp[j] + dp[j-a[i]]) % mod;
            }
        }
        //cout << t <<endl;
        cout << dp[t] <<endl;
   }
}


以上是关于codeforces 283C的主要内容,如果未能解决你的问题,请参考以下文章

[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段

c_cpp Codeforces片段

如何在 Presto Athena 中将 varchar 转换为数组

Codeforces 86C Genetic engineering(AC自动机+DP)

CodeForces 1005D Polycarp and Div 3(思维贪心dp)

(Incomplete) Codeforces 394 (Div 2 only)