結果

問題 No.2623 Room Allocation
ユーザー kotatsugamekotatsugame
提出日時 2024-02-09 21:34:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 69,976 KB
実行使用メモリ 9,956 KB
最終ジャッジ日時 2024-09-28 14:45:59
合計ジャッジ時間 2,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 19 ms
6,820 KB
testcase_07 AC 17 ms
6,820 KB
testcase_08 AC 17 ms
6,820 KB
testcase_09 AC 17 ms
6,816 KB
testcase_10 AC 15 ms
8,540 KB
testcase_11 AC 13 ms
6,816 KB
testcase_12 AC 7 ms
6,816 KB
testcase_13 AC 7 ms
7,012 KB
testcase_14 AC 37 ms
9,924 KB
testcase_15 AC 26 ms
6,820 KB
testcase_16 AC 8 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 27 ms
6,820 KB
testcase_19 AC 26 ms
6,816 KB
testcase_20 AC 26 ms
6,816 KB
testcase_21 AC 25 ms
6,816 KB
testcase_22 AC 20 ms
6,816 KB
testcase_23 AC 12 ms
6,820 KB
testcase_24 AC 26 ms
6,816 KB
testcase_25 AC 23 ms
6,816 KB
testcase_26 AC 4 ms
6,820 KB
testcase_27 AC 45 ms
9,720 KB
testcase_28 AC 21 ms
7,140 KB
testcase_29 AC 13 ms
7,144 KB
testcase_30 AC 43 ms
9,956 KB
testcase_31 AC 5 ms
6,820 KB
testcase_32 AC 13 ms
7,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<cassert>
using namespace std;
int N,X,Y;
long x[4<<17],y[4<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>X>>Y;
	for(int i=0;i<N;i++)
	{
		int p;char c;cin>>p>>c;
		if(c=='A')x[i%(X+Y)]+=p;
		else y[i%(X+Y)]+=p;
	}
	long ans=0;
	for(int i=0;i<X+Y;i++)
	{
		ans+=x[i];
		y[i]=x[i]-y[i];
	}
	sort(y,y+X+Y);
	for(int i=0;i<Y;i++)ans-=y[i];
	cout<<ans<<endl;
}
0