LightOJ1017---Brush (III) (dp)
7724 단어 dp
You can assume that the rope is sufficiently large. Since Samir is too lazy, he doesn’t want to clean all the room. Instead of doing it he thought that he would use at most k moves. Now he wants to find the maximum number of dust units he can clean using at most k moves. Please help him. Input
Input starts with an integer T (≤ 100), denoting the number of test cases.
Each case starts with a blank line. The next line contains three integers N (1 ≤ N ≤ 100), w (1 ≤ w ≤ 10000) and k (1 ≤ k ≤ 100). N means that there are N dust points. Each of the next N lines contains two integers: xi yi denoting the coordinates of the dusts. You can assume that (-109 ≤ xi, yi ≤ 109) and all points are distinct. Output
For each case print the case number and the maximum number of dusts Samir can clean using at most k moves. Sample Input
Output for Sample Input
2
3 2 1
0 0
20 2
30 2
3 1 1
0 0
20 2
30 2
Case 1: 3
Case 2: 2
Problem Setter: Jane Alam Jan
dp[i][j] 앞의 i점(순서를 먼저 정한 다음에 각 y 좌표에 몇 개의 점이 있는지 처리) j회 조작을 사용하여 최대 쓸어버릴 수 있는 점
/************************************************************************* > File Name: LightOJ1017.cpp > Author: ALex > Mail: [email protected] > Created Time: 2015 06 08 19 26 07 ************************************************************************/
#include <functional>
#include <algorithm>
#include <iostream>
#include <fstream>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <queue>
#include <stack>
#include <map>
#include <bitset>
#include <set>
#include <vector>
using namespace std;
const double pi = acos(-1.0);
const int inf = 0x3f3f3f3f;
const double eps = 1e-15;
typedef long long LL;
typedef pair <int, int> PLL;
map <int, int> st;
int dp[110][110];
struct node {
int num;
int y;
}p[110];
int cmp(node a, node b) {
return a.y > b.y;
}
int main() {
int t, icase = 1;
scanf("%d", &t);
while (t--) {
st.clear();
int n, w, k;
int x, y;
scanf("%d%d%d", &n, &w, &k);
for (int i = 1; i <= n; ++i) {
scanf("%d%d", &x, &y);
if (st.find(y) == st.end()) {
st[y] = 1;
}
else {
++st[y];
}
}
int cnt = 0;
for (map <int, int> :: iterator it = st.begin(); it != st.end(); ++it) {
p[++cnt].y = it -> first;
p[cnt].num = it -> second;
}
sort(p + 1, p + cnt + 1, cmp);
memset(dp, 0, sizeof(dp));
for (int i = 1; i <= cnt; ++i) {
for (int j = 1; j <= k; ++j) {
dp[i][j] = dp[i - 1][j];
int sum = 0;
for (int l = i; l >= 1; --l) {
if (p[l].y > p[i].y + w) {
break;
}
sum += p[l].num;
dp[i][j] = max(dp[i][j], dp[l - 1][j - 1] + sum);
}
}
}
printf("Case %d: %d
", icase++, dp[cnt][k]);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.