QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#410661#6564. Frequent FlierDanielChang#AC ✓72ms16040kbC++17826b2024-05-14 11:02:422024-05-14 11:02:43

Judging History

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

  • [2024-05-14 11:02:43]
  • 评测
  • 测评结果:AC
  • 用时:72ms
  • 内存:16040kb
  • [2024-05-14 11:02:42]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'

int main(){
	ios::sync_with_stdio(false); cin.tie(0);
	int n, m, k;
	cin >> n >> m >> k;
	vector<int> a(2*m + n), res(2*m + n);
	set<int> s;
	for(int i=m; i<m+n; i++){
	    cin >> a[i];
	    s.insert(i);
    }
	int cur = 0;
	for(int i=1; i<m+n; i++){
	    // [i, i+m-1]
	    cur -= res[i-1];
	    auto it = s.lower_bound(i+m);
	    while(cur < k && it != begin(s) && *prev(it) >= i){
	        it = prev(it);
	        int j = *it;
	        ll amt = min(k - cur, a[j] - res[j]);
	        // cout << j-m+1 << ": " << amt << endl;
	        cur += amt;
	        res[j] += amt;
	        if(res[j] == a[j]){
	            it = s.erase(it);
	        }
	    }
	}
	cout << accumulate(res.begin(), res.end(), 0ll);
	
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3604kb

input:

8 3 2
3
1
4
1
5
9
2
6

output:

8

result:

ok single line: '8'

Test #2:

score: 0
Accepted
time: 58ms
memory: 14092kb

input:

200000 2467 999931035
182548858
69876218
33328350
919486767
739850600
948199964
392292320
39077742
366752074
917496841
246661698
37219034
56677740
188278971
965701828
28059790
13200243
825730775
542597589
320715170
939054378
470563899
914247467
990100491
290827128
903662394
611104879
18631185
412134...

output:

82994275905

result:

ok single line: '82994275905'

Test #3:

score: 0
Accepted
time: 0ms
memory: 6176kb

input:

1 200000 999959273
1255319

output:

1255319

result:

ok single line: '1255319'

Test #4:

score: 0
Accepted
time: 72ms
memory: 16040kb

input:

200000 118880 996878327
993340390
999483057
808153702
337349872
863222189
7495963
995920883
12950768
958082368
993215196
967152406
1388062
949959944
836952150
964071667
5291
139115263
958470154
51295691
175385
925242139
995685554
10895812
12563
55482
479983443
42805
996241239
6228013
302633329
10331...

output:

2990634981

result:

ok single line: '2990634981'

Test #5:

score: 0
Accepted
time: 59ms
memory: 14228kb

input:

200000 15 44049967
999927791
29351
999894087
687373343
518282902
19725626
452930
6701
999697321
27032796
5498
259987
999999980
485673990
805879
315651507
166801295
189865616
999910671
6203805
978801777
41916529
942904087
997589912
17146790
922137016
444882952
999884603
999926345
938979650
18597283
9...

output:

598769574112

result:

ok single line: '598769574112'