結果

問題 No.1649 Manhattan Square
ユーザー kmjpkmjp
提出日時 2021-08-13 23:45:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 327 ms / 3,000 ms
コード長 2,432 bytes
コンパイル時間 2,492 ms
コンパイル使用メモリ 212,756 KB
実行使用メモリ 53,304 KB
最終ジャッジ日時 2024-10-04 00:07:42
合計ジャッジ時間 15,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
40,832 KB
testcase_01 AC 13 ms
40,960 KB
testcase_02 AC 16 ms
41,216 KB
testcase_03 AC 16 ms
41,088 KB
testcase_04 AC 14 ms
41,216 KB
testcase_05 AC 16 ms
41,216 KB
testcase_06 AC 16 ms
41,216 KB
testcase_07 AC 296 ms
53,192 KB
testcase_08 AC 327 ms
53,248 KB
testcase_09 AC 300 ms
53,104 KB
testcase_10 AC 292 ms
53,188 KB
testcase_11 AC 287 ms
53,192 KB
testcase_12 AC 275 ms
50,664 KB
testcase_13 AC 267 ms
49,592 KB
testcase_14 AC 271 ms
50,632 KB
testcase_15 AC 287 ms
50,632 KB
testcase_16 AC 264 ms
49,648 KB
testcase_17 AC 261 ms
50,760 KB
testcase_18 AC 260 ms
48,760 KB
testcase_19 AC 270 ms
49,264 KB
testcase_20 AC 268 ms
49,736 KB
testcase_21 AC 269 ms
50,892 KB
testcase_22 AC 321 ms
53,168 KB
testcase_23 AC 308 ms
53,192 KB
testcase_24 AC 289 ms
53,196 KB
testcase_25 AC 290 ms
53,196 KB
testcase_26 AC 312 ms
53,236 KB
testcase_27 AC 288 ms
53,300 KB
testcase_28 AC 301 ms
53,232 KB
testcase_29 AC 285 ms
53,188 KB
testcase_30 AC 306 ms
53,304 KB
testcase_31 AC 287 ms
53,192 KB
testcase_32 AC 292 ms
53,232 KB
testcase_33 AC 291 ms
53,192 KB
testcase_34 AC 274 ms
53,192 KB
testcase_35 AC 296 ms
53,192 KB
testcase_36 AC 294 ms
53,192 KB
testcase_37 AC 299 ms
53,236 KB
testcase_38 AC 285 ms
53,064 KB
testcase_39 AC 289 ms
53,196 KB
testcase_40 AC 297 ms
53,172 KB
testcase_41 AC 320 ms
53,232 KB
testcase_42 AC 188 ms
48,776 KB
testcase_43 AC 12 ms
40,832 KB
testcase_44 AC 12 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
ll X[202020],Y[202020];
const ll mo=998244353;
vector<ll> Xs,Ys;

template<class V, int ME> class BIT_mod {
public:
	V bit[1<<ME];
	BIT_mod(){ZERO(bit);};
	V operator()(int e) {ll s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s%mo;}
	void add(int e,V v) { e++; while(e<=1<<ME) { bit[e-1]+=v; bit[e-1] -= (bit[e-1]>=mo)?mo:0; e+=e&-e;}}
};
BIT_mod<ll,20> bit_num,bit_x,bit_y,bit_xy;

vector<int> ev[202020];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	ll ret=0;
	ll xs=0,xs2=0,ys=0,ys2=0;
	Xs.push_back(0);
	Ys.push_back(0);
	
	FOR(i,N) {
		cin>>X[i]>>Y[i];
		
		ret+=xs2;
		ret-=2*xs*X[i];
		ret+=i*((X[i]*X[i])%mo);
		ret+=ys2;
		ret-=2*ys*Y[i];
		ret+=i*((Y[i]*Y[i])%mo);
		ret=(ret%mo+mo)%mo;
		
		(xs+=X[i])%=mo;
		(xs2+=X[i]*X[i])%=mo;
		(ys+=Y[i])%=mo;
		(ys2+=Y[i]*Y[i])%=mo;
		Xs.push_back(X[i]);
		Ys.push_back(Y[i]);
	}
	
	sort(ALL(Xs));
	sort(ALL(Ys));
	FOR(i,N) {
		X[i]=lower_bound(ALL(Xs),X[i])-Xs.begin();
		Y[i]=lower_bound(ALL(Ys),Y[i])-Ys.begin();
		ev[X[i]].push_back(i);
	}
	FOR(x,N+1) {
		FORR(i,ev[x]) {
			ll CX=Xs[X[i]];
			ll CY=Ys[Y[i]];
			//左上
			ret-=2*(bit_xy(N+1)-bit_xy(Y[i]));
			ret-=2*CX*CY%mo*(bit_num(N+1)-bit_num(Y[i]));
			ret+=2*CX%mo*(bit_y(N+1)-bit_y(Y[i]));
			ret+=2*CY%mo*(bit_x(N+1)-bit_x(Y[i]));
			ret=(ret%mo+mo)%mo;
			//左下
			ret+=2*bit_xy(Y[i]-1);
			ret+=2*CX*CY%mo*bit_num(Y[i]-1);
			ret-=2*CX%mo*bit_y(Y[i]-1);
			ret-=2*CY%mo*bit_x(Y[i]-1);
			ret=(ret%mo+mo)%mo;
		}
		FORR(i,ev[x]) {
			bit_num.add(Y[i],1);
			bit_x.add(Y[i],Xs[X[i]]);
			bit_y.add(Y[i],Ys[Y[i]]);
			bit_xy.add(Y[i],1LL*Xs[X[i]]*Ys[Y[i]]%mo);
		}
		
	}
	
	cout<<ret<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0