Submission #827933

#TimeUsernameProblemLanguageResultExecution timeMemory
827933SebRadio Towers (IOI22_towers)C++17
0 / 100
342 ms1828 KiB
#include "towers.h" #include <bits/stdc++.h> using namespace std; typedef long long ll; #define f first #define s second ll k,h[100005]; void init(int N, std::vector<int> H) { for (int i=0;i<N;i++) { h[i] = H[i]; if (i>0 && i<N-1 && H[i] > H[i-1] && H[i] > H[i+1]) k = i; } return; } int max_towers(int L, int R, int D) { if (L > k || k > R) return 0; if (h[L] <= h[k]-D && h[R] <= h[k]-D) return 2; }

Compilation message (stderr)

towers.cpp: In function 'int max_towers(int, int, int)':
towers.cpp:23:1: warning: control reaches end of non-void function [-Wreturn-type]
   23 | }
      | ^
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...