记录编号 280051 评测结果 AAAAAAAAAA
题目名称 排序工作量 最终得分 100
用户昵称 GravatarHzoi_ 是否通过 通过
代码语言 C++ 运行时间 0.536 s
提交时间 2016-07-09 20:40:25 内存使用 0.31 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#define lowbit(x) ((x)&(-(x)))
using namespace std;
namespace mine{
	inline int getint(){
		static int __c,__x;
		static bool __neg;
		__x=0;
		__neg=false;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline long long getll(){
		static long long __x;
		static char __c;
		static bool __neg;
		__x=0;
		__neg=false;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline void putint(int __x){
		static int __a[40],__i,__j;
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
	inline void putll(long long __x){
		static int __a[40],__i,__j;
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
}
using namespace mine;
const int maxn=10010;
void add(int);
int query(int);
bool cmp(const int&,const int&);
int n,b[maxn],c[maxn]={0},ans=0,i,j;
double a[maxn],d[maxn];
inline int MAIN(){
#define MINE
#ifdef MINE
	freopen("sortt.in","r",stdin);
	freopen("sortt.out","w",stdout);
#endif
	scanf("%d",&n);
	for(i=1;i<=n;i++)scanf("%lf",&a[i]);
	for(i=1;i<=n;i++)for(j=i+1;j<=n;j++)ans+=a[j]<a[i];
	printf("%d",ans);
	return 0;
}
void add(int x){
	for(int i=x;i;i-=lowbit(i))c[i]++;
}
int query(int x){
	int result=0;
	for(int i=x+1;i<=n;i+=lowbit(i))result+=c[i];
	return result;
}
inline bool cmp(const int &x,const int &y){
	return a[x]<a[y];
}
int hzoier=MAIN();
int main(){;}