Submission #707311

#TimeUsernameProblemLanguageResultExecution timeMemory
707311mseebacherRice Hub (IOI11_ricehub)C++17
0 / 100
1088 ms468 KiB
//#include <bits/stdc++.h> #include <stdio.h> #include <stdlib.h> #include <iostream> #include <string> #include <vector> #include <cmath> #include <cstring> #include <algorithm> #include <iomanip> #include <map> #include <set> #include <stack> #include <queue> #include <functional> #include <iostream> #include <fstream> #include <string> using namespace std; #define mp make_pair #define f first #define s second #define pb push_back typedef long long ll; typedef long double lld; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<pii> vpi; typedef vector<pll> vpl; const lld pi = 3.14159265358979323846; #define MAXI (int)2e5+5 int besthub(int r,int l,int x[],ll b){ int ans = 0; for(int i = 0;i<r;i++){ for(int j = i+1;j<r;j++){ ll cost = 0; for(int h = i;h<=j;h++){ int mid = (i+j) >> 1; cost += abs(x[mid]-x[h]); } if(cost < b) ans = max(j-i+1,ans); } } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...