QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#158244#6531. Base Station Constructioncy1999TL 1ms17972kbC++1012b2023-09-02 16:20:552023-09-02 16:20:55

Judging History

你现在查看的是最新测评结果

  • [2023-09-02 16:20:55]
  • 评测
  • 测评结果:TL
  • 用时:1ms
  • 内存:17972kb
  • [2023-09-02 16:20:55]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define int long long
int const maxn = 5e5 + 10;
int const inf = 1e9+10;

struct node {
	int l,r;
	
}p[maxn];

bool cmp(node a,node b){
	if(a.r==b.r){
		return a.l<b.l;
	}else return a.r < b.r;
}
int a[maxn];
int f[maxn];
int q[maxn];
int pre[maxn];

signed main(){
	int t;
	cin >> t ;
	while(t--){
	 	int n;
	 	memset(f,0,sizeof f);
	    memset(pre,0,sizeof pre);
		memset(q,0,sizeof q);
		cin >> n;
	    for(int i = 1;i <= n;i ++){
	    	cin >> a[i];
	    }
	    int m;
	    cin >> m ;
	    for(int i = 1;i <= m;i ++){
	    	cin >> p[i].l>>p[i].r;
	    	pre[p[i].r] = max(pre[p[i].r],p[i].l);
	    }
	    sort(p+1,p+m+1,cmp);
	    int l = 1,r = 1;
	   
	    q[l] = 0;
	    
	    for(int i = 1;i <= n;i ++){
	    	f[i] = f[q[l]] + a[i];
	    	while(l <=	 r&&f[q[r]] > f[i])r--;
	    	q[++r] = i;
	    	while(q[l] < pre[i]){
	    		l ++;
	    	}
	    }
	    
	    cout << f[n] <<'\n';
	}
	return 0;
    
	 	
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 17972kb

input:

2
5
3 2 4 1 100
3
1 3
2 4
5 5
5
7 3 4 2 2
3
1 4
2 3
4 5

output:

102
5

result:

ok 2 number(s): "102 5"

Test #2:

score: -100
Time Limit Exceeded

input:

6201
12
88 78 46 95 84 98 55 3 68 42 6 18
19
6 9
10 11
12 12
8 11
8 12
2 3
2 3
1 5
9 9
7 8
6 11
2 4
12 12
2 4
2 9
7 10
8 8
1 7
6 11
5
76 27 48 66 61
2
1 4
3 5
8
64 81 20 6 86 9 4 55
1
7 7
9
1 43 18 81 11 22 9 61 83
14
5 6
2 6
5 8
1 4
9 9
9 9
7 7
2 5
8 9
5 6
4 8
5 8
9 9
6 6
10
66 41 84 7 80 31 22 96 ...

output:

141
88
59
126
303
141
45
170
159
139
222
194
217
147
230
93
287
89
124
130
148
125
100
193
228
111
239
303
236
150
177
57
59
38
90
128
83
160
108
62
35
122
156
81
115
229
110
242
126
28
210
86
311
244
262
162
302
177
93
238
30
129
75
109
96
179
81
224
142
172
119
111
215
247
301
121
120
56
213
118
3...

result: