Codeforces Beta Round #4 (Div. 2 Only) B. Before an Exam dp
題目連接:
http://www.codeforces.com/contest/4/problem/B
Description
Tomorrow Peter has a Biology exam. He does not like this subject much, but d days ago he learnt that he would have to take this exam. Peter's strict parents made him prepare for the exam immediately, for this purpose he has to study not less than minTimei and not more than maxTimei hours per each i-th day. Moreover, they warned Peter that a day before the exam they would check how he has followed their instructions.
So, today is the day when Peter's parents ask him to show the timetable of his preparatory studies. But the boy has counted only the sum of hours sumTime spent him on preparation, and now he wants to know if he can show his parents a timetable sсhedule with d numbers, where each number sсhedulei stands for the time in hours spent by Peter each i-th day on biology studies, and satisfying the limitations imposed by his parents, and at the same time the sum total of all schedulei should equal to sumTime.
Input
The first input line contains two integer numbers d,?sumTime (1?≤?d?≤?30,?0?≤?sumTime?≤?240) — the amount of days, during which Peter studied, and the total amount of hours, spent on preparation. Each of the following d lines contains two integer numbers minTimei,?maxTimei (0?≤?minTimei?≤?maxTimei?≤?8), separated by a space — minimum and maximum amount of hours that Peter could spent in the i-th day.
Output
In the first line print YES, and in the second line print d numbers (separated by a space), each of the numbers — amount of hours, spent by Peter on preparation in the corresponding day, if he followed his parents' instructions; or print NO in the unique line. If there are many solutions, print any of them.
Sample Input
1 48
5 7
Sample Output
NO
Hint
題意
有n天,你一共學習了m個小時。
這n天每天你必須學習li個小時,但是不能超過ri小時。
問你m個小時能不能合理分配,滿足這n天的要求。
如果可以,輸出方案。
題解:
直接dp就好了,dp[i][j]表示到了第i天,一共學習了j個小時。
然后記錄一下從哪兒轉移過來的就好了。
不過數據范圍好小,估計怎么做都可以……
代碼
#include<bits/stdc++.h> using namespace std; const int maxn = 35; int n,m; int l[maxn],r[maxn]; int dp[35][1200],from[35][1200]; void solve(int x,int y) {if(x!=1)solve(x-1,from[x][y]);printf("%d ",y-from[x][y]); } int main() {scanf("%d%d",&n,&m);for(int i=1;i<=n;i++)scanf("%d%d",&l[i],&r[i]);dp[0][0]=1;for(int i=1;i<=n;i++){for(int j=0;j<1000;j++){if(dp[i-1][j]){for(int k=l[i];k<=r[i];k++){dp[i][j+k]=1;from[i][j+k]=j;}}}}if(dp[n][m]){cout<<"YES"<<endl;solve(n,m);}else cout<<"NO"<<endl; }轉載于:https://www.cnblogs.com/qscqesze/p/5293318.html
總結
以上是生活随笔為你收集整理的Codeforces Beta Round #4 (Div. 2 Only) B. Before an Exam dp的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 云桌面优缺点_云桌面的缺点分析
- 下一篇: 技术与英语