Submission #844401
Source Code Expand
Copy
#include <string>
#include <vector>
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<stack>
#include<queue>
#include<cmath>
#include<algorithm>
#include<functional>
#include<list>
#include<deque>
#include<bitset>
#include<set>
#include<map>
#include<unordered_map>
#include<cstring>
#include<sstream>
#include<complex>
#include<iomanip>
#include<numeric>
#include<cassert>
#define X first
#define Y second
#define pb push_back
#define rep(X,Y) for (int (X) = 0;(X) < (Y);++(X))
#define reps(X,S,Y) for (int (X) = S;(X) < (Y);++(X))
#define rrep(X,Y) for (int (X) = (Y)-1;(X) >=0;--(X))
#define repe(X,Y) for ((X) = 0;(X) < (Y);++(X))
#define peat(X,Y) for (;(X) < (Y);++(X))
#define all(X) (X).begin(),(X).end()
#define rall(X) (X).rbegin(),(X).rend()
#define eb emplace_back
#define UNIQUE(X) (X).erase(unique(all(X)),(X).end())
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
template<class T> using vv=vector<vector<T>>;
template<class T> ostream& operator<<(ostream &os, const vector<T> &t) {
os<<"{"; rep(i,t.size()) {os<<t[i]<<",";} os<<"}"<<endl; return os;}
template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";}
template<class T> inline bool MX(T &l,const T &r){return l<r?l=r,1:0;}
template<class T> inline bool MN(T &l,const T &r){return l>r?l=r,1:0;}
const ll MOD=1e9+7;
int main(){
ios_base::sync_with_stdio(false);
cout<<fixed<<setprecision(0);
int n;
cin>>n;
vector<int> a(n),zip;
rep(i,n) cin>>a[i];
zip=a;
sort(all(zip));
for(int &x:a) x=lower_bound(all(zip),x)-zip.begin();
int re=0;
rep(i,n) if(i%2 != a[i]%2) ++re;
cout<<re/2<<endl;
return 0;
}
Submission Info
Submission Time |
|
Task |
C - BBuBBBlesort! |
User |
nuip |
Language |
C++14 (GCC 5.4.1) |
Score |
600 |
Code Size |
1789 Byte |
Status |
AC |
Exec Time |
54 ms |
Memory |
1152 KB |
Judge Result
Set Name |
Sample |
All |
Score / Max Score |
0 / 0 |
600 / 600 |
Status |
|
|
Set Name |
Test Cases |
Sample |
s1.txt, s2.txt |
All |
01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, s1.txt, s2.txt |
Case Name |
Status |
Exec Time |
Memory |
01.txt |
AC |
54 ms |
1152 KB |
02.txt |
AC |
53 ms |
1024 KB |
03.txt |
AC |
53 ms |
1024 KB |
04.txt |
AC |
53 ms |
1024 KB |
05.txt |
AC |
49 ms |
1024 KB |
06.txt |
AC |
49 ms |
1024 KB |
07.txt |
AC |
49 ms |
1024 KB |
08.txt |
AC |
32 ms |
1024 KB |
09.txt |
AC |
31 ms |
1024 KB |
10.txt |
AC |
30 ms |
1024 KB |
11.txt |
AC |
30 ms |
1024 KB |
12.txt |
AC |
31 ms |
1024 KB |
13.txt |
AC |
31 ms |
1024 KB |
14.txt |
AC |
49 ms |
1024 KB |
15.txt |
AC |
49 ms |
1024 KB |
16.txt |
AC |
49 ms |
1024 KB |
17.txt |
AC |
49 ms |
1024 KB |
18.txt |
AC |
4 ms |
256 KB |
19.txt |
AC |
4 ms |
256 KB |
20.txt |
AC |
4 ms |
256 KB |
21.txt |
AC |
4 ms |
256 KB |
22.txt |
AC |
4 ms |
256 KB |
s1.txt |
AC |
4 ms |
256 KB |
s2.txt |
AC |
4 ms |
256 KB |