結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー tadanoningentadanoningen
提出日時 2021-11-07 19:44:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 202,604 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-04-26 18:08:02
合計ジャッジ時間 14,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 105 ms
6,656 KB
testcase_17 AC 196 ms
9,472 KB
testcase_18 AC 149 ms
8,064 KB
testcase_19 AC 60 ms
5,376 KB
testcase_20 AC 68 ms
5,376 KB
testcase_21 AC 204 ms
9,984 KB
testcase_22 AC 209 ms
9,856 KB
testcase_23 AC 204 ms
9,856 KB
testcase_24 AC 206 ms
9,856 KB
testcase_25 AC 204 ms
9,856 KB
testcase_26 AC 203 ms
9,856 KB
testcase_27 AC 205 ms
9,856 KB
testcase_28 AC 204 ms
9,856 KB
testcase_29 AC 202 ms
9,856 KB
testcase_30 AC 204 ms
9,856 KB
testcase_31 AC 206 ms
9,856 KB
testcase_32 AC 192 ms
9,984 KB
testcase_33 AC 191 ms
9,856 KB
testcase_34 AC 215 ms
9,856 KB
testcase_35 AC 191 ms
9,856 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;
using ld = long double;

bool comp(pair<ll,ll> a,pair<ll,ll> b){
	if(a.second < b.second) return true;
	return false;
}

int main(){
	ll n,k;
	cin >> n >> k;
	vector<ll> a(n),b(n);
	vector<pair<ll,ll>> diff(n);
	string ans = "";
	for(int i=0;i < n;i++) cin >> a[i];
	for(int i=0;i < n;i++) cin >> b[i];
	for(int i=0;i < n;i++){
		ans += 'A';
		diff[i] = {i,a[i]-b[i]};
	}
	

	sort(diff.begin(),diff.end(),comp);

	for(int i=0;i < n-k;i++){
		ans[diff[i].first] = 'B';
	}
	cout << ans << endl;
	return 0;
}
0