hiho week 137 register

Ended

Participants:293

Verdict:Accepted
Score:100 / 100
Submitted:2017-02-14 16:31:07

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 <iostream>
#include <vector>
#include <algorithm>
using namespace std;
#define LL long long
const int MAX=100000000000000;
int N,M,K,T;
vector<LL> A;
vector<LL> B;
void getInput()
{
    cin>>N>>M>>K>>T;
    A.resize(0);
    B.resize(0);
    for (int i=0;i<M;++i)
    {
        int a;
        cin>>a;
        A.push_back(a);
    }
    for (int i=0;i<M;++i)
    {
        int b;
        cin>>b;
        B.push_back(b);
    }
}
LL calLayer()
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX