# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
646169 | 2022-09-28T21:10:30 Z | eNGy | Circus (Balkan15_CIRCUS) | C++17 | 4000 ms | 264376 KB |
#include "circus.h" #include <bits/stdc++.h> #define c(x) (cerr << __LINE__ << ": " << #x << ' ' << (x) << endl, (x)) #define vis() (cerr << __LINE__ << endl) #define ll long long #define f first #define s second #define pb push_back #define rsz resize #define all(x) begin(x), end(x) #define sz(x) (int)(x).size() using namespace std; vector<int> X, L; int n; void init(int N, int M, int P[]){ n = N; for(int i=0; i<N; i++){ X.pb(P[i]); } X.pb(M); priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pq; L.resize(N+1, 1e9); L[N] = 0; pq.push({0, N}); while(!pq.empty()){ int n = pq.top().s, l = pq.top().f; pq.pop(); //c(n); c(l); if(L[n] != l) continue; for(int i=0; i<n; i++){ if(abs(X[i] - X[n]) >= L[n]){ if(L[i] > abs(X[i] - X[n])){ L[i] = abs(X[i] - X[n]); pq.push({L[i], i}); } } } } //for(int l: L) cout << l << ' '; cout << endl; } int minLength(int D) { int l = X[n] - D; for(int i=0; i<n; i++){ if(X[i] == D) return L[i]; if(abs(X[i] - D) >= L[i]){ l = min(l, abs(X[i] - D)); } } return l; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4070 ms | 264376 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4070 ms | 264376 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4070 ms | 264376 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |