洛谷 P2347 砝码称重
生活随笔
收集整理的這篇文章主要介紹了
洛谷 P2347 砝码称重
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
P2347 砝碼稱重
題目描述
設(shè)有1g、2g、3g、5g、10g、20g的砝碼各若干枚(其總重<=1000),
輸入輸出格式
輸入格式:?
輸入方式:a1 a2 a3 a4 a5 a6
(表示1g砝碼有a1個(gè),2g砝碼有a2個(gè),…,20g砝碼有a6個(gè))
?
輸出格式:?
輸出方式:Total=N
(N表示用這些砝碼能稱出的不同重量的個(gè)數(shù),但不包括一個(gè)砝碼也不用的情況)
?
輸入輸出樣例
輸入樣例#1:?復(fù)制 1 1 0 0 0 0 輸出樣例#1:?復(fù)制 Total=3思路:搜索
#include<map> #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; map<int,int>ma; int b[7]={0,1,2,3,5,10,20}; int a[7],ans,pos[7]; void dfs(int tot,int num){if(tot-1==6){if(!ma[num]) ans++,ma[num]=1;return ;}for(int i=0;i<=a[tot];i++)dfs(tot+1,num+i*b[tot]); } int main(){for(int i=1;i<=6;i++) scanf("%d",&a[i]);ma[0]=1;dfs(1,0);cout<<"Total="<<ans; }
?
?轉(zhuǎn)載于:https://www.cnblogs.com/cangT-Tlan/p/7853751.html
總結(jié)
以上是生活随笔為你收集整理的洛谷 P2347 砝码称重的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 谈谈我的移动端rem适配方案
- 下一篇: 硕士研究僧长成记