B - Birthday Boy Gym - 102007B
题目链接:https://cn.vjudge.net/contest/283924#problem/B
题目大意:给你n个人的信息,让你找出一个时间,要求让你选择一天,使得这一天的前一个生日距离它最远,如果有多个一样的,有点选择10月27之后的。
AC代码:
- #include<iostream>
- #include<stack>
- #include<cstring>
- #include<iomanip>
- #include<stdio.h>
- #include<algorithm>
- #include<cmath>
- using namespace std;
- # define ll long long
- # define inf 0x3f3f3f3f
- # define lson l,m,rt<<
- # define rson m+,r,rt<<|
- const int maxn = 2e5+;
- struct node
- {
- int m;
- int d;
- int day;
- bool friend operator < (node t1,node t2)
- {
- return t1.day<t2.day;
- }
- } q[maxn];
- char u;
- char str[maxn];
- int sto[maxn];
- int a[maxn];
- int f[]= {,,,,,,,,,,,};
- int cal(int t1,int t2)
- {
- int ans=;
- for(int i=; i<t1-; i++)
- {
- ans+=f[i];
- }
- ans+=t2;
- return ans;
- }
- int main()
- {
- // freopen("data1.in","r",stdin);
- int n,m,d;
- scanf("%d",&n);
- if(n==)
- {
- cin>>str;
- cin>>q[].m>>u>>q[].d;
- int i,tot=cal(q[].m,q[].d)-;
- for( i=; i<; i++)
- {
- if(tot-f[i]>=)
- tot-=f[i];
- else
- break;
- }
- if(tot==)
- {
- i--;
- if(i==-)
- i=;
- tot=f[i];
- }
- printf("%02d-%02d\n",i+,tot);
- return ;
- }
- for(int i=; i<=n; i++)
- {
- cin>>str;
- cin>>q[i].m>>u>>q[i].d;
- q[i].day=cal(q[i].m,q[i].d);
- }
- sort(q+,q+n+);
- sto[]=-q[n].day+q[].day;
- for(int i=; i<=n; i++)
- {
- sto[i]=q[i].day-q[i-].day;
- }
- int maxx=;
- for(int i=; i<=n; i++)
- {
- maxx=max(maxx,sto[i]);
- }
- int num=,id;
- for(int i=; i<=n; i++)
- {
- if(maxx==sto[i])
- {
- a[++num]=i;
- }
- }
- // cout<<num<<endl;
- if(num==)
- {
- int i,tot=sto[a[]]+q[a[]-].day-;
- if(a[]==)tot=q[].day-;
- tot=(tot+)%;
- for(i=; i<; i++)
- {
- if(tot-f[i]>=)
- tot-=f[i];
- else
- break;
- }
- if(tot==)
- {
- i--;
- if(i==-)
- i=;
- tot=f[i];
- }
- printf("%02d-%02d\n",i+,tot);
- }
- else
- {
- int flag=;
- int minn1=inf;
- int minn2=inf;
- int pos;
- for(int i=; i<=num; i++)
- {
- int tmp=sto[a[i]]+q[a[i]-].day-;
- if(tmp>)
- tmp-=;
- if(tmp>cal(,))
- {
- if(tmp-cal(,)<minn1)
- {
- minn1=tmp-cal(,);
- flag=i;
- }
- }
- else
- {
- if((tmp-cal(,))<minn2)
- {
- minn2=tmp-cal(,);
- pos=i;
- }
- }
- }
- // cout<<minn1<<endl;
- int i,tot;
- if(minn1!=inf)
- {
- i,tot=sto[a[flag]]+q[a[flag]-].day-;
- tot=(tot+)%;
- for( i=; i<; i++)
- {
- if(tot-f[i]>=)
- tot-=f[i];
- else
- break;
- }
- }
- else
- {
- tot=q[pos].day-;
- tot=(tot+)%;
- for( i=; i<; i++)
- {
- if(tot-f[i]>=)
- tot-=f[i];
- else
- break;
- }
- }
- if(tot==)
- {
- i--;
- if(i==-)
- i=;
- tot=f[i];
- }
- printf("%02d-%02d\n",i+,tot);
- }
- return ;
- }
B - Birthday Boy Gym - 102007B的更多相关文章
- ACM: Gym 101047M Removing coins in Kem Kadrãn - 暴力
Gym 101047M Removing coins in Kem Kadrãn Time Limit:2000MS Memory Limit:65536KB 64bit IO Fo ...
- ACM: Gym 101047K Training with Phuket's larvae - 思维题
Gym 101047K Training with Phuket's larvae Time Limit:2000MS Memory Limit:65536KB 64bit IO F ...
- ACM: Gym 101047E Escape from Ayutthaya - BFS
Gym 101047E Escape from Ayutthaya Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%I6 ...
- ACM: Gym 101047B Renzo and the palindromic decoration - 手速题
Gym 101047B Renzo and the palindromic decoration Time Limit:2000MS Memory Limit:65536KB 64 ...
- Gym 101102J---Divisible Numbers(反推技巧题)
题目链接 http://codeforces.com/gym/101102/problem/J Description standard input/output You are given an a ...
- Gym 100917J---Judgement(01背包+bitset)
题目链接 http://codeforces.com/gym/100917/problem/J Description standard input/outputStatements The jury ...
- Gym 100917J---dir -C(RMQ--ST)
题目链接 http://codeforces.com/gym/100917/problem/D problem description Famous Berland coder and IT mana ...
- Gym 101102D---Rectangles(单调栈)
题目链接 http://codeforces.com/gym/101102/problem/D problem description Given an R×C grid with each cel ...
- Gym 101102C---Bored Judge(区间最大值)
题目链接 http://codeforces.com/gym/101102/problem/C problem description Judge Bahosain was bored at ACM ...
随机推荐
- BZOJ4386[POI2015]Wycieczki——矩阵乘法+倍增
题目描述 给定一张n个点m条边的带权有向图,每条边的边权只可能是1,2,3中的一种.将所有可能的路径按路径长度排序,请输出第k小的路径的长度,注意路径不一定是简单路径,即可以重复走同一个点. 输入 第 ...
- 七牛云注册创建oss并配置自定义域名
1.登陆官网注册账号 有个人和企业两种,根据自己的情况进行注册 https://portal.qiniu.com/signup/choice 2.注册后要进行认证,不认证是没有免费空间给你使用的 3. ...
- hdu 4897 Little Devil I (树链剖分+线段树)
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=4897 题意: 给你一棵树,一开始每条边都是白色,有三种操作: 1.将 u - v路径上的边转换颜色 ...
- 自学Linux Shell4.2-监测磁盘空间mount umount df du
点击返回 自学Linux命令行与Shell脚本之路 4.2-监测磁盘空间mount umount df du 1. 挂载存储媒体mount 移除存储媒体umount ls命令用于显示文件目录列表, ...
- 自学Zabbix3.12.5-动作Action-Condition配置
点击返回:自学Zabbix之路 点击返回:自学Zabbix4.0之路 点击返回:自学zabbix集锦 3.12.5 自学Zabbix3.12.5-动作Action-Condition配置 报警,肯定是 ...
- SharePoint 2013 APP 开发示例 (六)服务端跨域访问 Web Service (REST API)
上个示例(SharePoint 2013 APP 开发示例 (五)跨域访问 Web Service (REST API))是基于JavaScript,运行在web browser内去访问REST AP ...
- 【POJ1187】陨石的秘密
题目大意: 定义一个串:只含有 '( )','[ ]','{ }',3种(6个)字符. 定义 SS 串: 空串是SS表达式. 若A是SS表达式,且A串中不含有中括号和大括号,则(A)是SS表达式. 若 ...
- vcf文件(call variants得来的)怎么看变异是纯合还是杂合的
如下图片所示: 对于位置为48245131的allele来说,REF为A,ALT为C 想确定变异到底是纯合还是杂合,即两条染色体是否同时发生了变异,则看GT,GT对应的数值为0/1,说明该变异为杂合: ...
- MyEclipse新建工作空间后的配置详细步骤
1. General --> Workspace --> UTF-8 2. General --> Editors -->File Associations --> J ...
- Failed to load because no supported source was found
Uncaught (in promise) DOMException: Failed to load because no supported source was found? 等待解决: