程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> uva 11776 - Oh Your Royal Greediness!(暴力)

uva 11776 - Oh Your Royal Greediness!(暴力)

編輯:C++入門知識

題目鏈接:11776 - Oh Your Royal Greediness!


題目大意:有n農民,給出每個農民的工作的起始時間和終止時間。然後每個農民在工作的時候都必須有一個監工,問最少需要幾個監工。


解題思路:一開始以為是區間選點問題,後來WA了。然後直接暴力就過了。以每個農民的結束時間為標准,若其他人的起始時間小於這個標准,並且終止時間大於這個標准,監工數就要加+1,然後從中選出最大值。


#include 
#include 
#include 

using namespace std;

const int N = 1005;
int n;
struct state {
	int x, y;
}s[N];

bool cmp(const state& a, const state& b) {
	return a.x < b.x;
}

void init() {
	for (int i = 0; i < n; i++) scanf("%d %d", &s[i].x, &s[i].y);
	sort(s, s + n, cmp);
}

int solve() {
	int ans = 0;
	for (int i = 0; i < n; i++) {
		int cnt = 0;
		for (int j = 0; j < n; j++) {
			if (s[j].x > s[i].y) break;
		    if (s[j].x <= s[i].y && s[j].y >= s[i].y) cnt++;
		}
		ans = max(ans, cnt);
	}
	return ans;
}

int main() {
	int cas = 1;
	while (scanf("%d", &n) == 1 && n != -1) {
		init();
		printf("Case %d: %d\n", cas++, solve());
	}
	return 0;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved