[HAOI 2012]音量調節
阿新 • • 發佈:2017-11-05
printf name void 改變 一次 參加 long for wap
5 3 7
0<=beginlevel<=maxlevel
Description
一個吉他手準備參加一場演出。他不喜歡在演出時始終使用同一個音量,所以他決定每一首歌之前他都要改變一次音量。在演出開始之前,他已經做好了一個列表,裏面寫著在每首歌開始之前他想要改變的音量是多少。每一次改變音量,他可以選擇調高也可以調低。
音量用一個整數描述。輸入文件中給定整數beginLevel,代表吉他剛開始的音量,以及整數maxLevel,代表吉他的最大音量。音量不能小於0也不能大於maxLevel。輸入文件中還給定了n個整數c1,c2,c3…..cn,表示在第i首歌開始之前吉他手想要改變的音量是多少。
吉他手想以最大的音量演奏最後一首歌,你的任務是找到這個最大音量是多少。
Input
第一行依次為三個整數:n, beginLevel, maxlevel。
第二行依次為n個整數:c1,c2,c3…..cn。
Output
輸出演奏最後一首歌的最大音量。如果吉他手無法避免音量低於0或者高於maxLevel,輸出-1。
Sample Input
3 5 105 3 7
Sample Output
10HINT
1<=N<=50,1<=Ci<=Maxlevel 1<=maxlevel<=10000<=beginlevel<=maxlevel
題解
自古蛤省出水題。拿個$bool$背包亂搞一下就好了。沒事幹還可以滾一下。
1 //It is made by Awson on 2017.11.5 2 #include <set> 3 #include <map> 4 #include <cmath> 5 #include <ctime> 6 #include <stack> 7 #include <queue> 8 #include <vector> 9 #include <string> 10 #include <cstdio> 11#include <cstdlib> 12 #include <cstring> 13 #include <iostream> 14 #include <algorithm> 15 #define LL long long 16 #define Min(a, b) ((a) < (b) ? (a) : (b)) 17 #define Max(a, b) ((a) > (b) ? (a) : (b)) 18 #define Abs(x) ((x) < 0 ? (-(x)) : (x)) 19 using namespace std; 20 const int N = 50; 21 const int M = 1000; 22 23 bool f[M+5][N+5], t, lt; 24 int n, b, m, c; 25 26 void work() { 27 scanf("%d%d%d", &n, &b, &m); t = 1; f[b][lt] = 1; 28 for (int i = 1; i <= n; i++) { 29 scanf("%d", &c); 30 for (int j = 0; j <= m; j++) { 31 f[j][t] = 0; 32 if (j-c >= 0) f[j][t] |= f[j-c][lt]; 33 if (j+c <= m) f[j][t] |= f[j+c][lt]; 34 } 35 swap(t, lt); 36 } 37 for (int i = m; i >= 0; i--) if (f[i][lt]) { 38 printf("%d\n", i); return; 39 } 40 printf("%d\n", -1); 41 } 42 int main() { 43 work(); 44 return 0; 45 }
[HAOI 2012]音量調節