Submission #70204

#TimeUsernameProblemLanguageResultExecution timeMemory
70204zubecHoliday (IOI14_holiday)C++14
47 / 100
5098 ms6844 KiB
#include"holiday.h" #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 100100; int n, a[N], suff[N]; long long int findMaxAttraction(int n, int start, int d, int attraction[]) { ::n = n; for (int i = 1; i <= n; i++) a[i] = attraction[i-1]; ++start; if (start == 1){ ll ans = 0; multiset<int> q; int curd = 0; ll sum = 0; for (int i = 1; i <= n; i++){ ++curd; q.insert(a[i]); sum += a[i]; while(!q.empty() && curd > d){ sum -= *q.begin(); q.erase(q.begin()); --curd; } if (curd <= d){ ans = max(ans, sum); } ++curd; } return ans; } ll ans = 0; multiset<int> qq; int curdd = 0; ll summ = 0; for (int i = start; i >= 1; i--){ if (i < start){ ++curdd; ++curdd; summ += a[i]; qq.insert(a[i]); } multiset<int> q = qq; int curd = curdd; ll sum = summ; curd += abs(i-start); for (int j = start; j <= n; j++){ ++curd; sum += a[j]; q.insert(a[j]); while(!q.empty() && curd > d){ sum -= *q.begin(); q.erase(q.begin()); --curd; } //cout << i << ' ' << j << ' ' << curd << ' ' << sum << endl; if (curd <= d){ ans = max(ans, sum); } ++curd; } } reverse(a+1, a+n+1); start = n-start+1; qq.clear(); curdd = 0; summ = 0; for (int i = start; i >= 1; i--){ if (i < start){ ++curdd; ++curdd; summ += a[i]; qq.insert(a[i]); } multiset<int> q = qq; int curd = curdd; ll sum = summ; curd += abs(i-start); for (int j = start; j <= n; j++){ ++curd; sum += a[j]; q.insert(a[j]); while(!q.empty() && curd > d){ sum -= *q.begin(); q.erase(q.begin()); --curd; } //cout << i << ' ' << j << ' ' << curd << ' ' << sum << endl; if (curd <= d){ ans = max(ans, sum); } ++curd; } } return ans; }

Compilation message (stderr)

grader.cpp: In function 'int main()':
grader.cpp:7:12: warning: variable 'n_s' set but not used [-Wunused-but-set-variable]
     int i, n_s;
            ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...