# include <bits/stdc++.h>
# pragma GCC optimize("Ofast")
# define file
# define ll long long
# define fi first
# define se second
# define pb push_back
# define pf push_front
# define For(i, a, b) for( ll i = a; i < b; i++ )
# define in insert
# define all(a) a.begin(),a.end()
# define pi pair < ll, ll >
# define readfile(file) freopen ( (file + ".in").c_str(), "r", stdin)
# define writefile(file) freopen ( (file + ".out").c_str(), "w", stdout)
# define speed ios_base::sync_with_stdio(false);cin.tie(NULL)
# define SET(file) readfile(file);writefile(file);
# define LARGE 100005
using namespace std;
ll count_swaps( vector < int > S ) {
ll cnt = 0;
int n = S.size();
ll c = 0;
ll x = 0;
For ( i, 0, n / 2 ) {
if ( S[i] < 0 && S[i] != S[i + n / 2] && abs(S[i]) == abs(S[i + n / 2]) ) {
c++;
}
if ( abs( S[i] ) == abs( S[i + n / 2] ) ) {
x++;
}
}
if ( c == n / 2 ) {
ll ans = n / 2 - 1;
ans *= n / 2;
ans /= 2;
return ans;
}
if ( x == n / 2 ) {
vector < int > ms, ps;
For ( i, 0, n ) {
if ( S[i] > 0 ) ps.pb(i);
else ms.pb(i);
}
For ( i, 0, n ) {
if ( i > ms[0] ) ms.erase(ms.begin());
if ( i > ps[0] ) ps.erase(ps.begin());
if ( S[i] != S[i + 1] && abs(S[i]) == abs(S[i]) && S[i] < 0 ) {
i++;
}
else {
if ( S[i] < 0 ) {
for ( int j = ps[0]; j > i + 1; j-- ) {
swap( S[j], S[j - 1] );
cnt++;
}
}
else {
for ( int j = ms[0]; j > i; j-- ) {
swap(S[j], S[j - 1]);
cnt++;
}
}
}
}
return cnt;
}
For ( i, 0, n ) {
if ( S[i] != S[i + 1] && abs(S[i]) == abs(S[i + 1]) && S[i] < 0 ) {
i++;
}
else {
For ( j, i + 1, n ) {
if ( S[i] != S[j] && abs(S[i]) == abs(S[j]) ) {
for ( int k = j; k > i + 1; k-- ) {
swap( S[k], S[k - 1] );
cnt++;
}
if ( S[i] > 0 ) {
swap( S[i], S[i + 1] );
cnt++;
}
break;
}
}
i++;
}
}
return cnt;
}
/*
int main() {
/// Author: _Dilshod_
#ifdef file
freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);
#endif // file
speed;
vector < int > S = {-2, 2, 2, -2, -2, 2};
cout << count_swaps(S);
}
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Correct |
2 ms |
256 KB |
Output is correct |
5 |
Correct |
2 ms |
376 KB |
Output is correct |
6 |
Correct |
2 ms |
376 KB |
Output is correct |
7 |
Incorrect |
2 ms |
256 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
3 |
Correct |
2 ms |
256 KB |
Output is correct |
4 |
Correct |
2 ms |
256 KB |
Output is correct |
5 |
Correct |
2 ms |
256 KB |
Output is correct |
6 |
Correct |
2 ms |
256 KB |
Output is correct |
7 |
Correct |
2 ms |
380 KB |
Output is correct |
8 |
Correct |
2 ms |
256 KB |
Output is correct |
9 |
Runtime error |
3 ms |
500 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
3 |
Correct |
2 ms |
356 KB |
Output is correct |
4 |
Correct |
2 ms |
296 KB |
Output is correct |
5 |
Correct |
32 ms |
3064 KB |
Output is correct |
6 |
Correct |
31 ms |
3064 KB |
Output is correct |
7 |
Correct |
31 ms |
3064 KB |
Output is correct |
8 |
Correct |
30 ms |
3164 KB |
Output is correct |
9 |
Correct |
31 ms |
3196 KB |
Output is correct |
10 |
Correct |
32 ms |
3192 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Correct |
2 ms |
256 KB |
Output is correct |
5 |
Correct |
2 ms |
376 KB |
Output is correct |
6 |
Correct |
2 ms |
376 KB |
Output is correct |
7 |
Incorrect |
2 ms |
256 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Correct |
2 ms |
256 KB |
Output is correct |
5 |
Correct |
2 ms |
376 KB |
Output is correct |
6 |
Correct |
2 ms |
376 KB |
Output is correct |
7 |
Incorrect |
2 ms |
256 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |