結果

問題 No.694 square1001 and Permutation 3
ユーザー kotatsugamekotatsugame
提出日時 2020-02-21 01:53:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,015 bytes
コンパイル時間 1,134 ms
コンパイル使用メモリ 77,704 KB
実行使用メモリ 11,224 KB
最終ジャッジ日時 2024-10-08 19:35:14
合計ジャッジ時間 9,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:35:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   35 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
//1-indexed
#include<vector>
template<typename T>
struct BIT{
	int n;
	vector<T>bit;
	BIT(int n_=0):n(n_),bit(n_+1){}
	T sum(int i)
	{
		T ans=0;
		for(;i>0;i-=i&-i)ans+=bit[i];
		return ans;
	}
	void add(int i,T a)
	{
		if(i==0)return;
		for(;i<=n;i+=i&-i)bit[i]+=a;
	}
	int lower_bound(T k)//k<=sum(ret)
	{
		if(k<=0)return 0;
		int ret=0,i=1;
		while((i<<1)<=n)i<<=1;
		for(;i;i>>=1)
			if(ret+i<=n&&bit[ret+i]<k)k-=bit[ret+=i];
		return ret+1;
	}
};
int N,A[5<<17],B[5<<17];
vector<int>a;
main()
{
	cin>>N;
	for(int i=0;i<N;i++)
	{
		cin>>A[i];
		a.push_back(A[i]);
	}
	sort(a.begin(),a.end());
	a.erase(unique(a.begin(),a.end()),a.end());
	long cnt=0;
	BIT<int>P(a.size());
	for(int i=0;i<N;i++)
	{
		B[i]=lower_bound(a.begin(),a.end(),A[i])-a.begin();
		cnt+=i-P.sum(B[i]+1);
		P.add(B[i]+1,1);
	}
	cout<<cnt<<endl;
	for(int i=0;i<N-1;i++)
	{
		cnt-=B[i];
		cnt+=a.end()-upper_bound(a.begin(),a.end(),A[i]);
		cout<<cnt<<endl;
	}
}
0