結果

問題 No.2161 Black Market
ユーザー tailstails
提出日時 2022-12-13 22:04:26
言語 cLay
(20240714-1)
結果
AC  
実行時間 187 ms / 7,000 ms
コード長 1,044 bytes
コンパイル時間 6,945 ms
コンパイル使用メモリ 228,756 KB
実行使用メモリ 38,588 KB
最終ジャッジ日時 2024-11-07 15:58:45
合計ジャッジ時間 9,807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,632 KB
testcase_01 AC 3 ms
5,504 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,504 KB
testcase_05 AC 4 ms
5,504 KB
testcase_06 AC 3 ms
5,632 KB
testcase_07 AC 4 ms
5,888 KB
testcase_08 AC 4 ms
6,016 KB
testcase_09 AC 3 ms
6,016 KB
testcase_10 AC 4 ms
6,016 KB
testcase_11 AC 4 ms
5,888 KB
testcase_12 AC 4 ms
5,632 KB
testcase_13 AC 3 ms
5,760 KB
testcase_14 AC 4 ms
5,760 KB
testcase_15 AC 4 ms
6,016 KB
testcase_16 AC 4 ms
5,888 KB
testcase_17 AC 3 ms
5,632 KB
testcase_18 AC 3 ms
5,504 KB
testcase_19 AC 3 ms
5,760 KB
testcase_20 AC 175 ms
20,672 KB
testcase_21 AC 174 ms
20,668 KB
testcase_22 AC 137 ms
19,628 KB
testcase_23 AC 179 ms
19,612 KB
testcase_24 AC 187 ms
38,588 KB
testcase_25 AC 72 ms
24,964 KB
testcase_26 AC 164 ms
37,840 KB
testcase_27 AC 38 ms
18,288 KB
testcase_28 AC 37 ms
19,184 KB
testcase_29 AC 13 ms
9,472 KB
testcase_30 AC 10 ms
7,168 KB
testcase_31 AC 114 ms
29,144 KB
testcase_32 AC 36 ms
17,904 KB
testcase_33 AC 19 ms
9,188 KB
testcase_34 AC 9 ms
8,064 KB
testcase_35 AC 11 ms
8,704 KB
testcase_36 AC 15 ms
8,908 KB
testcase_37 AC 11 ms
7,408 KB
testcase_38 AC 69 ms
19,016 KB
testcase_39 AC 8 ms
7,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@k,@l,@p;
ll n1=n>>1,n2=n-n1;
vector<pair<ll,ll>>g1[18],g2[18];

// hanbun zen rekkyo
g1[0].push_back({0,0});
rep(i,n1){
	ll@a,@b;
	rrep(j,i+1){
		for(auto x:g1[j]){
			g1[j+1].push_back({x.first+b,x.second+a});
		}
	}
}
g2[0].push_back({0,0});
rep(i,n2){
	ll@a,@b;
	rrep(j,i+1){
		for(auto x:g2[j]){
			g2[j+1].push_back({x.first+b,x.second+a});
		}
	}
}

// zaatsu cost
ll za[1<<18],zn=0;
rep(i,n1+1){
	for(auto x:g1[i]){
		za[zn++]=l-x.second;
	}
}
rep(i,n2+1){
	for(auto x:g2[i]){
		za[zn++]=x.second;
	}
}
coordcomp(zn,za);
zn=0;
rep(i,n1+1){
	for(auto&x:g1[i]){
		x.second=za[zn++];
	}
}
rep(i,n2+1){
	for(auto&x:g2[i]){
		x.second=za[zn++];
	}
}

// kazoeru
ll z=0;
ll j=0;
vector<pair<ll,ll>>g;
rrep(i,n1+1){
	while(j<=n2&&i+j<=k){
		g.insert(g.end(),g2[j].begin(),g2[j].end());
		++j;
	}
	sort(g.begin(),g.end());
	sort(g1[i].begin(),g1[i].end());
	ll l=g.size()-1;
	fenwick<ll>f;
	f.malloc(1<<18,1);
	for(auto x:g1[i]){
		while(l>=0&&x.first+g[l].first>=p){
			f.add(g[l].second,1);
			--l;
		}
		z+=f.get(x.second);
	}
}
wt(z);
0