A. On Segment's Own Points

1、http://codeforces.com/contest/397/problem/A

2、题目大意:

有n个人,每个人都有一个区间,第一个区间是自己的,最后要求的就是自己的区间有多少没被别人占用

一开始还以为用线段树做呢,其实100个数据简单一个for循环就解决的

3、题目

A. On Segment's Own Points
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Our old friend Alexey has finally entered the University of City N — the Berland capital. Alexey expected his father to get him a place to live in but his father said it was high time for Alexey to practice some financial independence. So, Alexey is living in a dorm.

The dorm has exactly one straight dryer — a 100 centimeter long rope to hang clothes on. The dryer has got a coordinate system installed: the leftmost end of the dryer has coordinate 0, and the opposite end has coordinate 100. Overall, the university has n students. Dean's office allows i-th student to use the segment (li, ri) of the dryer. However, the dean's office actions are contradictory and now one part of the dryer can belong to multiple students!

Alexey don't like when someone touch his clothes. That's why he want make it impossible to someone clothes touch his ones. So Alexey wonders: what is the total length of the parts of the dryer that he may use in a such way that clothes of the others (n - 1) students aren't drying there. Help him! Note that Alexey, as the most respected student, has number 1.

Input

The first line contains a positive integer n (1 ≤ n ≤ 100). The (i + 1)-th line contains integers li and ri (0 ≤ li < ri ≤ 100) — the endpoints of the corresponding segment for the i-th student.

Output

On a single line print a single number k, equal to the sum of lengths of the parts of the dryer which are inside Alexey's segment and are outside all other segments.

Sample test(s)
Input
3
0 5
2 8
1 6
Output
1
Input
3
0 10
1 5
7 15
Output
3
Note

Note that it's not important are clothes drying on the touching segments (e.g. (0, 1) and (1, 2)) considered to be touching or not because you need to find the length of segments.

In the first test sample Alexey may use the only segment (0, 1). In such case his clothes will not touch clothes on the segments (1, 6) and (2, 8). The length of segment (0, 1) is 1.

In the second test sample Alexey may dry his clothes on segments (0, 1) and (5, 7). Overall length of these segments

4、AC代码:

 

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int visit[105];
int main()
{
    int n,a,b,c,d;
    while(scanf("%d",&n)!=EOF)
    {
        memset(visit,0,sizeof(visit));
        scanf("%d%d",&a,&b);
        for(int i=1;i<n;i++)
        {
            scanf("%d%d",&c,&d);
            for(int j=c+1;j<=d;j++)
            visit[j]=1;
        }
        int cnt=0;
        for(int i=a+1;i<=b;i++)
        {
            if(visit[i]==0)
            cnt++;
        }
        printf("%d\n",cnt);
    }
    return 0;
}
/*
3
0 5
2 8
1 6
3
0 10
1 5
7 15
*/


 

public override bool GroupRun(ref string message, ref CogToolResultConstants result) { // To let the execution stop in this script when a debugger is attached, uncomment the following lines. // #if DEBUG // if (System.Diagnostics.Debugger.IsAttached) System.Diagnostics.Debugger.Break(); // #endif // Run each tool using the RunTool function foreach(ICogTool tool in Tools) RunTool(tool, ref message, ref result); // 输入距离 double a = this.Inputs.R/2; Point[] L1 = FindParallelLine(new Point(this.Inputs.LineSegment1.StartX,this.Inputs.LineSegment1.StartY), new Point(this.Inputs.LineSegment1.EndX,this.Inputs.LineSegment1.EndY), a); Point[] L2 = FindParallelLine(new Point(this.Inputs.LineSegment2.StartX,this.Inputs.LineSegment2.StartY), new Point(this.Inputs.LineSegment2.EndX,this.Inputs.LineSegment2.EndY), a); Point PX1 = GetIntersectionPoint(L1[0].X, L1[0].Y, L1[1].X, L1[1].Y, L2[0].X, L2[0].Y, L2[1].X, L2[1].Y); this.Outputs.X1 = PX1.X; this.Outputs.Y1 = PX1.Y; Point[] L3 = FindParallelLine(new Point(this.Inputs.LineSegment3.StartX, this.Inputs.LineSegment3.StartY), new Point(this.Inputs.LineSegment3.EndX, this.Inputs.LineSegment3.EndY), a); Point[] L4 = FindParallelLine(new Point(this.Inputs.LineSegment4.StartX, this.Inputs.LineSegment4.StartY), new Point(this.Inputs.LineSegment4.EndX, this.Inputs.LineSegment4.EndY), a); Point PX2 = GetIntersectionPoint(L3[0].X, L3[0].Y, L3[1].X, L3[1].Y, L4[0].X, L4[0].Y, L4[1].X, L4[1].Y); this.Outputs.X2 = PX2.X; this.Outputs.Y2 = PX2.Y; //输出值变量值除以1000 this.Outputs.D1 = (PX1.Y+a)/1000; this.Outputs.D2 = (PX2.Y+a)/1000; this.Outputs.DD = Math.Abs( this.Outputs.D1-this.Outputs.D2); return false; } //线段平移 public static Point[] FindParallelLine(Point start, Point end, double distance) { double length = Math.Sqrt(Math.Pow(end.X - start.X, 2) + Math.Pow(end.Y - start.Y, 2)); double dx = (end.X - start.X) / leng
05-24
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值