이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define mod 1000000007LL
#define inf 1e17
#define ll long long
using namespace std;
void printvec(vector<ll> vec)
{
for (auto &&e : vec)
{
cout << e << ' ';
}
cout << endl;
}
ll count_swaps(vector<int> s)
{
ll n = s.size()/2;
bool sametype = true;
for (int i = 1; i < n; i++)
{
if(abs(s[i])!=abs(s[i-1]))
{
sametype = false;
break;
}
}
if(n == 1) return s[0] > s[1];
else if(!sametype) return n*(n-1)/2;
else
{
ll ans = 0;
for (int i = 0; i < 2*n; i++)
{
if(s[i] < 0)
{
s[i] = -1;
}
else s[i] = 1;
}
vector<ll> correct(2*n);
for (int i = 0; i < 2*n; i++)
{
if(i%2 == 0) correct[i] = -1;
else correct[i] = 1;
}
for (int i = 0; i < 2*n-1; i++)
{
if(s[i] != correct[i] && s[i+1] != correct[i])
{
swap(s[i], s[i+1]);
ans++;
}
}
vector<set<ll>> indices(2);
for (int i = 0; i < 2*n; i++)
{
if(s[i]!=correct[i])
{
if(s[i] == -1)
{
indices[0].insert(i);
}
else indices[1].insert(i);
}
}
for (int i = 0; i < n; i++)
{
if(s[i]!=correct[i])
{
if(s[i] == -1)
{
ll index = *indices[1].lower_bound(i);
ans += 2*(index - i)-1;
swap(s[i], s[index]);
}
else
{
ll index = *indices[0].lower_bound(i);
ans += 2*(index - i)-1;
swap(s[i], s[index]);
}
}
}
return ans;
}
}
// int main()
// {
// cout << count_swaps({-1,1}) << endl;
// }
# | 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... |