Submission #629894

#TimeUsernameProblemLanguageResultExecution timeMemory
629894hy_1Gap (APIO16_gap)C++14
0 / 100
25 ms1872 KiB
#include "gap.h" #include <bits/stdc++.h> #define ll long long using namespace std; long long findGap(int T, int N){ ll n = N; vector<ll> arr(n); ll l =1 , r = 1e18; while(arr.size() < n){ ll mn , mx; MinMax(l , r , &mn , &mx); arr.push_back(mn); if(mn != mx){ arr.push_back(mx); } l += 1; r -= 1; } ll ans = 0; for(int i =0; i<n-1; i++){ ll y = arr[i+1] - arr[i]; // ans = max(ans , y); if(y > ans) ans = y; } return ans; }

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:13:19: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
   13 |  while(arr.size() < n){
      |        ~~~~~~~~~~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...