Codeforces Round #274 (Div. 2) C. Exams_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:55:54
原创
1209人浏览过

Student Valera is an undergraduate student at the University. His end of term exams are approaching and he is to pass exactly n exams. Valera is a smart guy, so he will be able to pass any exam he takes on his first try. Besides, he can take several exams on one day, and in any order.

According to the schedule, a student can take the exam for the i-th subject on the day number ai. However, Valera has made an arrangement with each teacher and the teacher of the i-th subject allowed him to take an exam before the schedule time on day bi (bi?

Valera believes that it would be rather strange if the entries in the record book did not go in the order of non-decreasing date. Therefore Valera asks you to help him. Find the minimum possible value of the day when Valera can take the final exam if he takes exams so that all the records in his record book go in the order of non-decreasing date.

Input

The first line contains a single positive integer n (1?≤?n?≤?5000) ? the number of exams Valera will take.

立即学习前端免费学习笔记(深入)”;

Each of the next n lines contains two positive space-separated integers ai and bi (1?≤?bi?

Output

Print a single integer ? the minimum possible number of the day when Valera can take the last exam if he takes all the exams so that all the records in his record book go in the order of non-decreasing date.

div+css3阶梯分页样式
div+css3阶梯分页样式

div+css3阶梯分页样式

div+css3阶梯分页样式 84
查看详情 div+css3阶梯分页样式

Sample test(s)

input

35 23 14 2
登录后复制

output

input

36 15 24 3
登录后复制

output

题意:一个人要参加n场考试,考试规定时间是ai,但是可以提前到bi,他要按照时间的顺序参加,在同一个时间可以做若干件事情,求最早的考完时间

思路:先按照规定时间排序,然后是每次记录上次考试的时间

#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>typedef long long ll;using namespace std;const int maxn = 5005;struct Node {	ll x, y;} node[maxn];int cmp(Node a, Node b) {	if (a.x != b.x)		return a.x < b.x;	return a.y < b.y;}int main() {	int n;	scanf("%d", &n);	for (int i = 0; i < n; i++) 		scanf("%lld%lld", &node[i].x, &node[i].y);		sort(node, node+n, cmp);	ll ans = 1;	for (int i = 0; i < n; i++) {		if (node[i].y >= ans)			ans = node[i].y;		else ans = node[i].x;	}	printf("%lld\n", ans);		return 0;}
登录后复制



HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号