标签:scan 利用 输入 div clu nbsp 多少 include i++
3 200 200 200
#include<bits/stdc++.h>
using namespace std; const int nl=404; const int mod=10000; int a[nl]; int f[nl]; int main(){ int n; cin>>n; f[0]=1; for(int i=1;i<=n;i++){ scanf("%d",&a[i]); } for(int i=1;i<=n;i++){ for(int j=400;j>=a[i];j--){ f[j]+=f[j-a[i]]; f[j]%=mod; } } cout<<f[400]; }
其实就是递推,个人认为还是(1)的更有意思鸭
标签:scan 利用 输入 div clu nbsp 多少 include i++
原文地址:https://www.cnblogs.com/crazily/p/9524347.html