Section 1.2.2 Milking Cows

= =之前跟队友兴致勃勃说要一起刷usaco,然后就卡在这题了,因为真没看懂。

今天莫名想起,感觉是左闭右开区间,然后一试就过了= = 然后又可以愉快开刷了

//然而队友已经不是原来的队友了

//人和人的价值观差别太大

//我觉得玩的开心就好+信守承诺最重要

//他觉得要当一队拿金然后进final最重要

//另一个迷之乱入的觉得和他妹子打+不离开原队友最重要,好吧 = =

//另外一个人迷之乱入的我也不知道他觉得什么重要,然而我信守对他承诺,以至于抛弃了队友(抱歉),然而他却背弃了呵呵呵,和学霸组队真是太危险辣,世界观我永远不懂

//反正闹得N头不是人,都怪我咯。。。

//好烦躁,还是刷题吧

我用的是不知道叫什么名字法,两端标记然后扫两遍,复杂度就是时间的长度

另外一种方法是记录所有的区间后排序然后乱搞

#include <bits/stdc++.h>
using namespace std;
const int N = 1000005;
int d[N];
int main()
{
    #ifndef poi
        freopen("milk2.in","r",stdin);
        freopen("milk2.out","w",stdout);
    #endif

    int n, i, x, y, temp, minn = 0x3f3f3f3f, maxn = 0;
    memset(d, 0, sizeof(d));
    scanf("%d", &n);
    while(n--){
        scanf("%d %d",&x, &y);
        d[x] ++;    d[y] --;    //[x, y)
        minn = min(minn, x);
        maxn = max(maxn, y);
    }

    for(i = minn; i <=1+ maxn; i++){
        d[i] += d[i-1];
      //  printf("%d %d\n", i, d[i]);
    }

    int ans1 = 0, ans2 = 0;
    for(i = minn; i <= maxn; ){
        temp = i;
      //  printf("%d\n", i);
        while(d[i]&&i <= maxn+1) {
            i ++;
        }
     //   printf("ans1 : %d %d\n", i, i-temp-1);
        ans1 = max(i-temp, ans1);
        temp = i;
        while(!d[i]&& i <= maxn+1){
            i ++;
        }
       //  printf("ans2 : %d %d\n", i, temp);
        ans2 = max(min(i,maxn)-temp, ans2);
    }

    printf("%d %d\n", ans1, ans2);
    return 0;
}

时间: 2024-12-16 14:36:41

Section 1.2.2 Milking Cows的相关文章

洛谷P1204 [USACO1.2]挤牛奶Milking Cows

P1204 [USACO1.2]挤牛奶Milking Cows 474通过 1.4K提交 题目提供者该用户不存在 标签USACO 难度普及- 提交  讨论  题解 最新讨论 请各位帮忙看下程序 错误 谢… 求大神扫一眼,模拟算法 求帮看看哪儿错 帮忙看看为什么不过 帮我看看哪里错了,挤牛奶,… 帮我看看哪里错了 题目描述 三个农民每天清晨5点起床,然后去牛棚给3头牛挤奶.第一个农民在300秒(从5点开始计时)给他的牛挤奶,一直到1000秒.第二个农民在700秒开始,在 1200秒结束.第三个农民

USACO 1.1 Milking Cows

Milking Cows Three farmers rise at 5 am each morning and head for the barn to milk three cows. The first farmer begins milking his cow at time 300 (measured in seconds after 5 am) and ends at time 1000. The second farmer begins at time 700 and ends a

【USACO1.2.1】Milking Cows

Milking Cows Three farmers rise at 5 am each morning and head for the barn to milk three cows. The first farmer begins milking his cow at time 300 (measured in seconds after 5 am) and ends at time 1000. The second farmer begins at time 700 and ends a

Milking Cows 挤牛奶 USACO 排序 模拟

1005: 1.2.1 Milking Cows 挤牛奶 时间限制: 1 Sec  内存限制: 128 MB提交: 15  解决: 9[提交] [状态] [讨论版] [命题人:外部导入] 题目描述 1.2.1 Milking Cows 挤牛奶 (milk2.pas/c/cpp) 三个农民每天清晨5点起床,然后去牛棚给3头牛挤奶.第一个农民在300秒(从5点开始计时)给他的牛挤奶,一直到1000秒.第二个农民在700秒开始,在 1200秒结束.第三个农民在1500秒开始2100秒结束.期间最长的至

洛谷—— P1204 [USACO1.2]挤牛奶Milking Cows

https://www.luogu.org/problem/show?pid=1204 题目描述 三个农民每天清晨5点起床,然后去牛棚给3头牛挤奶.第一个农民在300秒(从5点开始计时)给他的牛挤奶,一直到1000秒.第二个农民在700秒开始,在 1200秒结束.第三个农民在1500秒开始2100秒结束.期间最长的至少有一个农民在挤奶的连续时间为900秒(从300秒到1200秒),而最长的无人挤奶的连续时间(从挤奶开始一直到挤奶结束)为300秒(从1200秒到1500秒). 你的任务是编一个程序

USACO Milking Cows(模拟)

题目请点我 题意: 题意很简单,最开始的时候想要用优先队列存储时间,用map存储对应时间起点与终点.按时间轴顺序排列的思路是没错的,但是忽略了很重要的一点,一个时间起点可能会有多个对应的时间终点.改用结构体存储,定义cmp,得到时间轴.有两个变量表示总的时间起点和终点,注意起点与终点变换的条件,不断向后遍历就可以了. 代码实现: /* ID: eashion LANG: C++ TASK: milk2 */ #include <iostream> #include <cstdio>

USACO milking cows

题意是给你一个工人挤奶的时间, 然后让你求出最长连续工作时间和最长连续不工作时间..离散化后直接扫一遍即可: /* ID: m1500293 LANG: C++ PROG: milk2 */ #include <cstdio> #include <cstring> #include <algorithm> using namespace std; int n; int x[2*5000 + 100]; int num; struct Person { int x, y;

USACO Section1.2 Milking Cows 解题报告

milk2解题报告 —— icedream61 博客园(转载请注明出处)------------------------------------------------------------------------------------------------------------------------------------------------[题目] N个农民,每个农民从L[i]到R[i]时间给奶牛挤奶.问最长的一直有人挤奶的时间,和最长的没有人挤奶的时间.[数据范围] 1<=N

USACO SECTION1 2.1 Milking Cows 简单贪心

题目链接: http://train.usaco.org/usacoprob2?a=p8taXWtZBpU&S=milk2 题目描述: 给出n组数, 求出最长连续有数区间与最长连续无数区间 解题思路: 简单贪心, 先排序, 然后如果有交集判断右端点,如果右端点大则延伸, 否则continue, 如果无交集更新两个ans. 代码: http://train.usaco.org/usacoprob2?a=p8taXWtZBpU&S=milk2 思考: 简单的贪心我的代码却WA了, 记住一切从简