이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
#define F first
#define S seond
#define all(x) x.begin(), x.end()
#define pb push_back
#define mp make_pair
#define pii pair<int, int>
using namespace std;
typedef long long ll;
const int MAXN = (int)1e6 + 7;
const int MOD = 998244353;
const int INF = (int)1e9 + 7;
int n, m, t, tmp, tmp2, tmp3, u, v, w, ans;
ll count_swaps(vector<int> s) {
n = s.size()/2;
ans = 0;
tmp = 0;
while (tmp != n) {
int j = 2*tmp;
// cout << "!" << tmp << endl;
while (s[j] >= 0) j++;
while (j != 2*tmp) {
swap(s[j], s[j-1]);
ans++; j--;
}
j = 2*tmp+1;
while (s[j] != 0-s[2*tmp]) j++;
while (j != 2*tmp+1) {
swap(s[j], s[j-1]);
ans++; j--;
}
tmp++;
}
return ans;
}
# | 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... |