当前位置: 代码迷 >> 综合 >> 贪心 hdu1050 Moving Tables
  详细解决方案

贪心 hdu1050 Moving Tables

热度:56   发布时间:2023-12-14 04:05:40.0

题意:从一个房间把桌子搬运到另一个房间,需要10分钟,且中间的走廊在这10分钟内不能被别人使用

现在有许多条桌子要搬送,问最少需要多少时间


很容易想到贪心,某个点,被区间覆盖的次数最多的,就是最长需要的时间

但是这题有陷阱,因为并没有说明每次给的两个数字,前一个会小于后一个

所以可能后前一个会大于后一个,所以在读入的时候可能要交换左右的大小


#include<cstdio>
#include<cmath>
#include<cstring>
#include<queue>
#include<vector>
#include<ctime>
#include<functional>
#include<algorithm>using namespace std;
typedef long long LL;
typedef pair<int, int> PII;const int MX = 1e3 + 5;
const int INF = 0x3f3f3f3f;int IN[MX], OUT[MX];//,,这数据吓哭我了
int main() {//freopen("input.txt", "r", stdin);int T;scanf("%d", &T);while(T--) {int n;scanf("%d", &n);for(int i = 1; i <= n; i++) {int L, R;scanf("%d%d", &L, &R);IN[i] = (L + 1) / 2;OUT[i] = (R + 1) / 2;if(IN[i] > OUT[i]) swap(IN[i], OUT[i]);}sort(IN + 1, IN + 1 + n);sort(OUT + 1, OUT + 1 + n);int c1 = 1, c2 = 1, ans = 0, cnt = 0;for(int i = 1; i <= 200; i++) {while(c1 <= n && IN[c1] == i) {c1++;cnt++;}ans = max(ans, cnt);while(c2 <= n && OUT[c2] == i) {c2++;cnt--;}}printf("%d\n", ans * 10);}return 0;
}


  相关解决方案