Submission #979142

#TimeUsernameProblemLanguageResultExecution timeMemory
979142TsaganaRainforest Jumps (APIO21_jumps)C++14
4 / 100
573 ms2764 KiB
#include "jumps.h" //OP #include<bits/stdc++.h> #define IOS ios_base::sync_with_stdio(false);cin.tie();cout.tie(); #define all(x) x.begin(), x.end() #define pi pair<int, int > #define pq priority_queue #define lb lower_bound #define ub upper_bound #define pb push_back #define eb emplace_back #define mset multiset #define F first #define S second using namespace std; struct tree { int n; vector<int> h; void build() { } int count(int A, int B, int C, int D) { return C - B; } }; tree T; void init(int N, std::vector<int> H) { T.n = N; T.h = H; T.build(); } int minimum_jumps(int A, int B, int C, int D) {return T.count(A, B, C, D);} //ED
#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...