Submission #646094

#TimeUsernameProblemLanguageResultExecution timeMemory
646094eNGyCircus (Balkan15_CIRCUS)C++17
0 / 100
4058 ms2504 KiB
#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); for(int x: X){ L.pb(X[n] - x); } for(int i=n-1; i>0; i--){ for(int j=i-1; j>=0; j--){ if((X[i] - X[j]) >= L[i]){ L[j] = min(L[j], (X[i] - X[j])); } } } } 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 (stderr)

grader.cpp: In function 'int main()':
grader.cpp:14:12: warning: unused variable 'max_code' [-Wunused-variable]
   14 |  long long max_code;
      |            ^~~~~~~~
grader.cpp:16:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   16 |  scanf("%d%d", &N, &M);
      |  ~~~~~^~~~~~~~~~~~~~~~
grader.cpp:18:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   18 |   scanf("%d", &P[i]);
      |   ~~~~~^~~~~~~~~~~~~
grader.cpp:21:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   21 |  scanf("%d", &Q);
      |  ~~~~~^~~~~~~~~~
grader.cpp:23:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   23 |   scanf("%d", &d);
      |   ~~~~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...