-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathroute.cpp
75 lines (67 loc) · 1.81 KB
/
route.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <iostream>
#include <string>
#include <utility>
#include <sstream>
#include <algorithm>
#include <stack>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <math.h>
#include <assert.h>
using namespace std;
#define INF 1000000000
#define LL_INF 0xfffffffffffffffLL
#define LSOne(S) (S & (-S))
#define EPS 1e-9
#define A first
#define B second
#define mp make_pair
#define PI acos(-1.0)
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
int n, m, r, lval[40001], rval[40001];
vii paths;
int main() {
freopen("route.in", "r", stdin);
freopen("route.out", "w", stdout);
ios_base::sync_with_stdio(false);
cin >> n >> m >> r;
lval[0] = 0, rval[0] = 0;
for (int i = 1; i <= n; i++) cin >> lval[i];
for (int i = 1; i <= m; i++) cin >> rval[i];
for (int i = 0; i < r; i++) {
int a, b; cin >> a >> b;
paths.push_back(mp(a, b));
}
sort(paths.begin(), paths.end());
long long dpLeft[100001];
long long dpRight[100001];
memset(dpLeft, 0, sizeof dpLeft);
memset(dpRight, 0, sizeof dpRight);
long long best = 0;
for (int i = 1; i <= n; i++) {
dpLeft[i] = lval[i];
best = max(best, dpLeft[i]);
}
for (int i = 1; i <= m; i++) {
dpRight[i] = rval[i];
best = max(best, dpRight[i]);
}
for (int i = r - 1; i >= 0; i--) {
int start = paths[i].A, end = paths[i].B;
long long newDPRight = rval[end] + dpLeft[start], newDPLeft = lval[start] + dpRight[end];
dpRight[end] = max(dpRight[end], newDPRight);
dpLeft[start] = max(dpLeft[start], newDPLeft);
best = max(best, dpRight[end]);
best = max(best, dpLeft[start]);
}
cout << best << endl;
return 0;
}