This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include <fstream>
#define endl '\n'
#define mod 1000000007
#define INF 2000000000
#define INF2 1000000000000000000
///#define cin fin
///#define cout fout
using namespace std;
double const EPS = 1e-14;
typedef long long ll;
///ofstream fout("herding.out");
///ifstream fin("herding.in");
int main()
{
ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0);
int n, d; cin >> n >> d; long long arr[n]; int ans = 0;
for(int i = 0; i < n; i++) cin >> arr[i];
for(long long i = 0; i < (1ll<<n); i++) {
int last = -1, mx = 0, cnt = 0;
bool ok = true;
for(long long j = 0; j < n; j++) {
if((i&(1ll<<j)) > 0 ) {
if(last != -1 && abs(last-j) > d) {
ok = false; break;
}
if(mx < arr[j]) {
cnt++; mx = arr[j];
}
last = j;
}
}
if(!ok) continue;
else ans = max(ans,cnt);
}
cout << ans << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |