Created
January 25, 2019 03:12
-
-
Save cbdavide/4f9fc7491afad80d42ac3560a61e8496 to your computer and use it in GitHub Desktop.
UVa 10819 - Trouble of 13-Dots
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
#define F first | |
#define S second | |
#define endl '\n' | |
#define PB push_back | |
typedef long long ll; | |
typedef vector<ll> vll; | |
typedef pair<int, int> ii; | |
typedef vector<ii> vii; | |
typedef vector<int> vi; | |
const int oo = ~(1<<31); | |
int n, m; | |
vii P(107); | |
int dp[107][10207][2]; | |
int f(int i, int c, int cond) { | |
if(i == n) return 0; | |
int &r = dp[i][c][cond]; | |
if(~r) return r; | |
r = f(i + 1, c, cond); | |
if((c + P[i].F) > 2000 && !cond) { | |
if((c + P[i].F) <= m) | |
r = max(r, f(i + 1, (c + P[i].F) - 200, 1) + P[i].S); | |
else { | |
if(((c + P[i].F) - 200) <= m) | |
r = max(r, f(i + 1, (c + P[i].F) - 200, 1) + P[i].S); | |
} | |
} else { | |
if(c + P[i].F <= m) | |
r = max(r, f(i + 1, c + P[i].F, cond) + P[i].S); | |
} | |
return r; | |
} | |
int main() { | |
#ifndef CBDAVIDES | |
ios_base::sync_with_stdio(false); | |
cin.tie(NULL); | |
#endif | |
while(cin >> m >> n) { | |
memset(dp, -1, sizeof dp); | |
for(int i=0; i<n; i++) | |
cin >> P[i].F >> P[i].S; | |
sort(P.begin(), P.begin() + n); | |
cout << f(0, 0, 0) << endl; | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment