POJ 3110 Jenny's First Exam (贪心)

时间:2021-12-23 00:22:50

题意:告诉你n 个科目的考试日期,在考试当天不能复习,每一个科目的最早复习时间不能早于考试时间的t天,每一天你可以复习完一科,也只能复习一科,求最晚的复习时间!。

析:由于题目给定的时间都在1900 ~ 2100 之间,所以先预处理时间,然后把每个科目按照考试时间最晚的优先策略进行排序,从后向前扫,看看能不能在规定时间内完成复习,然后维护一个优先队列,这个优先策略是开始时间减去 t 最大的优先,因为我们是从后向前找,肯定是越大越应该完成,要不然就完不成了,如果中间有完成不成的,就是不可能,否则就可以完成。由于代码写的不好,跑的很慢,效率比较低。

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <cstring>
#include <set>
#include <queue>
#include <algorithm>
#include <vector>
#include <map>
#include <cctype>
#include <cmath>
#include <stack>
#include <sstream>
#include <list>
#include <assert.h>
#include <bitset>
#include <numeric>
#define debug() puts("++++")
#define gcd(a, b) __gcd(a, b)
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define fi first
#define se second
#define pb push_back
#define sqr(x) ((x)*(x))
#define ms(a,b) memset(a, b, sizeof a)
#define sz size()
#define be begin()
#define ed end()
#define pu push_up
#define pd push_down
#define cl clear()
#define lowbit(x) -x&x
//#define all 1,n,1
#define FOR(i,n,x) for(int i = (x); i < (n); ++i)
#define freopenr freopen("in.in", "r", stdin)
#define freopenw freopen("out.out", "w", stdout)
using namespace std; typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int, int> P;
const int INF = 0x3f3f3f3f;
const LL LNF = 1e17;
const double inf = 1e20;
const double PI = acos(-1.0);
const double eps = 1e-8;
const int maxn = 5e4 + 10;
const int maxm = 700 + 10;
const LL mod = 1000000007;
const int dr[] = {-1, 1, 0, 0, 1, 1, -1, -1};
const int dc[] = {0, 0, 1, -1, 1, -1, 1, -1};
const char *de[] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
int n, m;
const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
inline bool is_in(int r, int c) {
return r >= 0 && r < n && c >= 0 && c < m;
}
inline int readInt(){ int x; scanf("%d", &x); return x; } struct Node{
int t, tim;
bool operator < (const Node &p) const{
return tim > p.tim || tim == p.tim && t < p.t;
}
};
Node a[maxn];
char s[20];
int date; bool is_leap_year(int n){
if(n % 400 == 0) return true;
if(n % 100 == 0) return false;
if(n % 4 == 0) return true;
return false;
} int cal(int y, int m, int d){
int ans = date;
for(int i = 1900; i < y; ++i) ans += is_leap_year(i) ? 366 : 365;
for(int i = 1; i < m; ++i) ans += is_leap_year(y) ? monn[i] : mon[i];
ans += d;
return ans;
} struct Sub{
int t, tim;
bool operator < (const Sub &p) const{
return tim - t < p.tim - p.t;
}
}; void print(int n){
int y, m;
for(int i = 0; ; ++i){
int t = is_leap_year(i) ? 366 : 365;
if(n > t) n -= t;
else{ y = i; break; }
}
for(int i = 1; ; ++i){
int t = is_leap_year(y) ? monn[i] : mon[i];
if(n > t) n -= t;
else{ m = i; break; }
}
printf("%02d.%02d.%04d\n", n, m, y);
} int main(){
date = 0;
for(int i = 0; i < 1900; ++i) date += is_leap_year(i) ? 366 : 365;
while(scanf("%d", &n) == 1){
for(int i = 0; i < n; ++i){
scanf("%s", s);
int y, m, d;scanf("%d.%d.%d", &d, &m, &y);
scanf("%d", &a[i].t);
a[i].tim = cal(y, m, d);
}
sort(a, a + n);
priority_queue<Sub> pq;
pq.push((Sub){a[0].t, a[0].tim});
bool ok = true;
int t = a[0].tim - 1;
for(int i = 1; i < n && ok; ++i){
int det = a[i-1].tim - a[i].tim - 1;
while(det-- > 0){
if(pq.empty()) break;
Sub x = pq.top(); pq.pop();
if(x.tim - x.t > t){
ok = false; break;
}
else --t;
}
pq.push((Sub){a[i].t, a[i].tim});
t = a[i].tim - 1;
}
while(!pq.empty()){
Sub x = pq.top(); pq.pop();
if(x.tim - x.t > t){
ok = false; break;
}
else --t;
} if(!ok) puts("Impossible");
else print(t + 1);
}
return 0;
}

  

代码如下:

POJ 3110 Jenny's First Exam (贪心)的更多相关文章

  1. &lbrack;POJ 2586&rsqb; Y2K Accounting Bug (贪心)

    题目链接:http://poj.org/problem?id=2586 题目大意:(真难读懂啊)给你两个数,s,d,意思是MS公司每个月可能赚钱,也可能赔钱,如果赚钱的话,就是赚s元,如果赔钱的话,就 ...

  2. poj 2010 Moo University - Financial Aid &lpar;贪心&plus;线段树&rpar;

    转载请注明出处,谢谢http://blog.csdn.net/ACM_cxlove?viewmode=contents    by---cxlove 骗一下访问量.... 题意大概是:从c个中选出n个 ...

  3. poj 1328 Radar Installation &lpar;简单的贪心&rpar;

    Radar Installation Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 42925   Accepted: 94 ...

  4. POJ 2370 Democracy in danger&lpar;简单贪心&rpar;

    Democracy in danger Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 3388   Accepted: 25 ...

  5. 【POJ】1862:Stripies【贪心】【优先队列】

    Stripies Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 20456   Accepted: 9098 Descrip ...

  6. POJ 2376 (区间问题,贪心)

    题目链接:http://poj.org/problem?id=2376 题目大意:选择一些区间使得能够覆盖1-T中的每一个点,并且区间数最少 题目分析:这道题目很明显可以用贪心法来解决.但题目没有看起 ...

  7. POJ 2586 Y2K Accounting Bug(贪心)

    题目连接:http://poj.org/problem?id=2586 题意:次(1-5.2-6.3-7.4-8.5-9.6-10.7-11.8-12),次统计的结果全部是亏空(盈利-亏空<0) ...

  8. poj 3069 Saruman&&num;39&semi;s Army (贪心)

    简单贪心. 从左边开始,找 r 以内最大距离的点,再在该点的右侧找到该点能覆盖的点.如图. 自己的逻辑有些混乱,最后还是参考书上代码.(<挑战程序设计> P46) /*********** ...

  9. poj 2393 Yogurt factory(dp&plus;贪心)

    奶牛们建了一家酸奶厂,在N周内每周需要出货Y_i单位酸奶,第i周成本为C_i,储存费为每周S.求总体最低成本. 贪心策略是维持每周的最低单位成本,每周可能用上周剩下的,也可能生产新的.于是该周单位成本 ...

随机推荐

  1. php事务

    <?php set_time_limit(); function sel($time,$number,$count){ ){ sel($time,$number,$count); return ...

  2. Oracle:高效插入大量数据经验之谈

    来源于:http://www.cnblogs.com/liwenzhen238/p/3610518.html 在很多时候,我们会需要对一个表进行插入大量的数据,并且希望在尽可能短的时间内完成该工作,这 ...

  3. aspose输出表格

    利用aspose在word中输出表格 序号 姓名 性别  <<TableStart:T>><<Index>>  <<Name>> ...

  4. Unicode转为UTF8

    Unicode转换为UTF8 要说这个转换也简单,使用WideCharToMultiByte两次或者直接一次就可以转换. 今天在弄VLC的时候,由于VLC的视频文件名使用UTF8编码,因此当路径中包含 ...

  5. 目标HttpController在ASP&period;NET Web API中是如何被激活的:目标HttpController的选择

    目标HttpController在ASP.NET Web API中是如何被激活的:目标HttpController的选择 ASP.NET Web API能够根据请求激活目标HttpController ...

  6. PO标准form的一点疑问

    最近在修改采购订单form的时候,发现采购订单form往数据库中插数据的地方找不到,程序太多.我们又需要根据界面上的item的值在订单界面数据生成数据库数据时插值时,只能是想其他办法,一种是在on-i ...

  7. shiro多Realm第一次调用不生效问题

    1. 由于最近自己写的一个项目上用到了多realm的使用,遇到了一个这样的问题: 1. 自己继承了BasicHttpAuthenticationFilter,实现了获取token,然后直接请求api的 ...

  8. oracle sql语句实现累加、累减、累乘、累除

    在oracle开发过程中经常会遇到累加.减.乘.除的问题.下面对这个做个小的总结 ---创建测试表 CREATE TABLE TEST( PARENT_ID NUMBER, PART_ID NUMBE ...

  9. Microsoft Visual C&plus;&plus; 14&period;0 is required问题的解决或warning&colon; Debugger speedups using cython not found

    今天在下载了 python3.64版本的安装后运行爬虫程序报错: warning: Debugger speedups using cython not found. Run '"C:\Py ...

  10. 使用lets encrypt证书加密

    1    git clone https://github.com/letsencrypt/letsencrypt 2     ./letsencrypt-auto certonly -d 域名