結果

問題 No.2957 Combo Deck Builder
ユーザー 沙耶花沙耶花
提出日時 2024-11-08 21:56:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 422 ms / 1,000 ms
コード長 1,070 bytes
コンパイル時間 5,025 ms
コンパイル使用メモリ 275,416 KB
実行使用メモリ 24,432 KB
最終ジャッジ日時 2024-11-08 21:56:38
合計ジャッジ時間 17,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 364 ms
16,476 KB
testcase_07 AC 322 ms
16,612 KB
testcase_08 AC 346 ms
16,648 KB
testcase_09 AC 320 ms
16,420 KB
testcase_10 AC 310 ms
16,308 KB
testcase_11 AC 311 ms
16,520 KB
testcase_12 AC 308 ms
16,216 KB
testcase_13 AC 316 ms
16,516 KB
testcase_14 AC 333 ms
16,308 KB
testcase_15 AC 316 ms
16,564 KB
testcase_16 AC 310 ms
16,568 KB
testcase_17 AC 310 ms
16,604 KB
testcase_18 AC 312 ms
16,512 KB
testcase_19 AC 315 ms
16,648 KB
testcase_20 AC 333 ms
16,448 KB
testcase_21 AC 310 ms
16,528 KB
testcase_22 AC 306 ms
16,404 KB
testcase_23 AC 311 ms
16,540 KB
testcase_24 AC 306 ms
16,288 KB
testcase_25 AC 311 ms
16,548 KB
testcase_26 AC 422 ms
24,196 KB
testcase_27 AC 402 ms
24,304 KB
testcase_28 AC 392 ms
24,404 KB
testcase_29 AC 391 ms
24,432 KB
testcase_30 AC 311 ms
24,188 KB
testcase_31 AC 284 ms
24,176 KB
testcase_32 AC 289 ms
24,268 KB
testcase_33 AC 318 ms
24,396 KB
testcase_34 AC 209 ms
5,632 KB
testcase_35 AC 212 ms
5,632 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL
long long get(vector<long long> c,vector<long long> x){
	vector<pair<long long,long long>> t;
	set<long long> S;
	rep(i,c.size()){
		t.push_back({x[i],c[i]});
		S.insert(i+1);
	}
	long long res = 0;
	sort(t.rbegin(),t.rend());
	rep(i,t.size()){
		auto it = S.upper_bound(t[i].second);
		if(it == S.begin())continue;
		it--;
		res += t[i].first;
		S.erase(it);
	}
	return res;
}

int main(){
	
	int n;
	cin>>n;
	vector<int> c(n),x(n),y(n);
	long long ans = 0;
	vector<vector<long long>> cc(2),xx(2),yy(2);
	rep(i,n){
		long long c,x,y;
		cin>>c>>x>>y;
		swap(x,y);
		if(x==y)ans += x;
		else if(x<y){
			cc[0].push_back(n-c);
			xx[0].push_back(y-x);
			ans += x;
		}
		else{
			cc[1].push_back(c);
			xx[1].push_back(x-y);
			ans += y;
		}
	}
	rep(i,2){
		ans += get(cc[i],xx[i]);
	}
	cout<<ans<<endl;
	
	
	return 0;
}
0