hihoCoder Challenge 9 register

Ended

Participants:154

Verdict:Accepted
Submitted:2015-03-01 19:26:58

Lang:G++

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <cstring>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <climits>
#include <utility>
#include <stack>
using namespace std;
struct point
{
    int num,cnt;
    friend bool operator < (point a,point b)
    {
        return a.num<b.num;
    }
}a[100005],b[100005];
bool cmp(point a,point b)
{
    return a.num<b.num;
}
int sum[100005];
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX