Submission #676553

#TimeUsernameProblemLanguageResultExecution timeMemory
676553Do_you_copyCandies (JOI18_candies)C++17
0 / 100
1 ms340 KiB
//Then #include <bits/stdc++.h> #define pb push_back #define fi first #define se second #define faster ios_base::sync_with_stdio(0); cin.tie(0); using namespace std; using ll = long long; using ld = long double; using pii = pair <int, int>; mt19937_64 Rand(chrono::steady_clock::now().time_since_epoch().count()); const int maxN = 1e5 + 1; //const int Mod = 1e9 + 7; //const int inf = int n; ll a[maxN]; bool invalid[maxN]; int nxt[maxN]; int pre[maxN]; struct TPQ{ int i; bool operator < (const TPQ &other) const{ return a[i] < a[other.i]; } }; priority_queue <TPQ> PQ; void Init(){ cin >> n; for (int i = 1; i <= n; ++i){ cin >> a[i]; pre[i] = i - 1; nxt[i] = i + 1; PQ.push({i}); } nxt[n] = 0; ll ans = 0; int k = (n + 1) / 2; for (int _ = 1; _ <= k; ++_){ while (!PQ.empty() && invalid[PQ.top().i]){ PQ.pop(); } if (PQ.empty()) break; int i = PQ.top().i; invalid[i] = 1; invalid[nxt[i]] = 1; invalid[pre[i]] = 1; a[++n] = a[nxt[i]] + a[pre[i]] - a[i]; nxt[n] = nxt[nxt[i]]; pre[nxt[nxt[i]]] = n; pre[n] = pre[pre[i]]; nxt[pre[pre[i]]] = n; ans += a[i]; PQ.push({n}); cout << ans << "\n"; } } #define debug #define taskname "test" signed main(){ faster if (fopen(taskname".inp", "r")){ freopen(taskname".inp", "r", stdin); freopen(taskname".out", "w", stdout); } int tt = 1; //cin >> tt; while (tt--){ Init(); } if (fopen("timeout.txt", "r")){ ofstream timeout("timeout.txt"); timeout << signed(double(clock()) / CLOCKS_PER_SEC * 1000); timeout.close(); #ifndef debug cerr << "Time elapsed: " << signed(double(clock()) / CLOCKS_PER_SEC * 1000) << "ms\n"; #endif // debug } }

Compilation message (stderr)

candies.cpp: In function 'int main()':
candies.cpp:66:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   66 |         freopen(taskname".inp", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
candies.cpp:67:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   67 |         freopen(taskname".out", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...