mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2025-01-23 03:11:59 +00:00
parent
37c2368a5b
commit
b82ff6f591
30
S2OJ/128/128.cpp
Normal file
30
S2OJ/128/128.cpp
Normal file
@ -0,0 +1,30 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int n, w, a[300005], t[3000005], ans;
|
||||
|
||||
int main() {
|
||||
cin >> n >> w;
|
||||
if (n == 1) {
|
||||
cout << 0 << endl;
|
||||
exit(0);
|
||||
}
|
||||
for (int i = 0; i < n; i++) {
|
||||
cin >> a[i];
|
||||
}
|
||||
for (int d = 0; (n - 1) * d <= w; d++) {
|
||||
for (int i = 0; i < n; i++) {
|
||||
if (a[i] > d * i && a[i] + (n - i + 1) * d <= w) {
|
||||
ans = max(ans, ++t[a[i] - d * i]);
|
||||
}
|
||||
}
|
||||
for (int i = 0; i < n; i++) {
|
||||
if (a[i] > d * i) {
|
||||
t[a[i] - d * i] = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
cout << n - ans << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user