# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
236750 |
2020-06-03T08:02:35 Z |
Vimmer |
Krov (COCI17_krov) |
C++14 |
|
1500 ms |
768 KB |
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("-O3")
#pragma GCC optimize("Ofast")
//#pragma GCC optimize("fast-math")
//#pragma GCC optimize("no-stack-protector")
#define F first
#define S second
#define sz(x) int(x.size())
#define pb push_back
#define N 100001
#define M ll(1e9 + 7)
#define inf 1e9 + 1e9
using namespace std;
//using namespace __gnu_pbds;
typedef long double ld;
typedef long long ll;
typedef unsigned long long ull;
typedef short int si;
typedef array <int, 2> a2;
//typedef tree <int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
int n, a[N];
ll calc(ll x, int pos)
{
if (x - pos <= 0) return 1e18;
ll sum = 0;
for (register int i = 0; i < pos; i++) sum += abs(a[i] - (x - abs(pos - i)));
for (register int i = pos + 1; i < n; i++) sum += abs(a[i] - (x - abs(pos - i)));
return sum + abs(x - a[pos]);
}
int main()
{
//freopen("input.txt", "r", stdin); //freopen("output4.txt", "w", stdout);
ios_base::sync_with_stdio(0); istream::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n;
for (int i = 0; i < n; i++) cin >> a[i];
ll ans = 1e18, pos;
for (int i = 0; i <= 0; i++)
{
int l = 0, r = 1e9;
while (l + 10 < r)
{
int mdl = l + (r - l) / 3;
int mdr = r - (r - l) / 3;
if (calc(mdl, i) > calc(mdr, i)) l = mdl; else r = mdr;
}
for (int x = l; x <= r; x++)
{
ll val = calc(x, i);
if (ans > val) {ans = val; pos = x;}
}
}
for (register int i = 1; i < n; i++)
{
for (register int x = pos - 5; x <= pos + 5; x++)
{
ll val = calc(x, i);
if (ans > val) {ans = val; pos = x;}
}
}
cout << ans;
}
Compilation message
krov.cpp: In function 'int main()':
krov.cpp:80:49: warning: 'pos' may be used uninitialized in this function [-Wmaybe-uninitialized]
for (register int x = pos - 5; x <= pos + 5; x++)
~~~~^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
21 ms |
384 KB |
Output is correct |
2 |
Correct |
24 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
21 ms |
384 KB |
Output is correct |
2 |
Correct |
25 ms |
288 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
46 ms |
384 KB |
Output is correct |
2 |
Correct |
50 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
79 ms |
384 KB |
Output is correct |
2 |
Correct |
86 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
150 ms |
504 KB |
Output is correct |
2 |
Correct |
110 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
449 ms |
404 KB |
Output is correct |
2 |
Correct |
380 ms |
384 KB |
Output is correct |
3 |
Correct |
124 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1598 ms |
384 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1598 ms |
512 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1588 ms |
640 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1587 ms |
768 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |