Submission #1081537

#TimeUsernameProblemLanguageResultExecution timeMemory
1081537vjudge1Measures (CEOI22_measures)C++17
0 / 100
1559 ms348 KiB
#include <bits/stdc++.h> //#define int long long using namespace std; using ll = long long; using pii = pair<int, int>; using pll = pair<ll, ll>; const int mod = 1e9 + 7; const int LOG = 20; const int maxn = 1e5 + 5; signed main() { ll n, m, d; cin >> n >> m >> d; vector<ll> a(n); for(ll &x : a) cin >> x; sort(a.begin(), a.end()); while(m--) { ll x; cin >> x; a.push_back(x); sort(a.begin(), a.end()); double ans=1e18; for(int i=0; i+1<a.size(); i++) { double res = 0; if(a[i+1] - a[i] < d) res = double(d - a[i+1] + a[i]) / 2; double res1=0, res2=0; for(int j=0; j+1<=i; j++) if(a[j+1] - a[j] < d) res1 += d - a[j+1] + a[j]; for(int j=i+1; j+1<a.size(); j++) if(a[j+1] - a[j] < d) res2 += d - a[j+1] + a[j]; ans = min(ans, res + max(res1, res2)); } for(int i=0; i<a.size(); i++) { double res1=0, res2=0; if(i && a[i] - a[i-1] < d) res1 += d - a[i] + a[i-1]; if(i + 1 < a.size() && a[i+1] - a[i] < d) res2 += d - a[i+1] + a[i]; for(int j=0; j+1<i; j++) if(a[j+1] - a[j] < d) res1 += d - a[j+1] + a[j]; for(int j=i+1; j+1<a.size(); j++) if(a[j+1] - a[j] < d) res2 += d - a[j+1] + a[j]; ans = min(ans, max(res1, res2)); } cout << ans << " "; } return 0; }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:30:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   30 |             for(int i=0; i+1<a.size(); i++) {
      |                          ~~~^~~~~~~~~
Main.cpp:35:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |                 for(int j=i+1; j+1<a.size(); j++) if(a[j+1] - a[j] < d) res2 += d - a[j+1] + a[j];
      |                                ~~~^~~~~~~~~
Main.cpp:38:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   38 |             for(int i=0; i<a.size(); i++) {
      |                          ~^~~~~~~~~
Main.cpp:41:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   41 |                 if(i + 1 < a.size() && a[i+1] - a[i] < d) res2 += d - a[i+1] + a[i];
      |                    ~~~~~~^~~~~~~~~~
Main.cpp:43:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |                 for(int j=i+1; j+1<a.size(); j++) if(a[j+1] - a[j] < d) res2 += d - a[j+1] + a[j];
      |                                ~~~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...