結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー inksamuraiinksamurai
提出日時 2021-10-29 21:39:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 174,488 KB
実行使用メモリ 8,168 KB
最終ジャッジ日時 2024-10-07 10:27:36
合計ジャッジ時間 9,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 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,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 38 ms
6,820 KB
testcase_17 AC 67 ms
7,892 KB
testcase_18 AC 52 ms
6,816 KB
testcase_19 AC 21 ms
6,820 KB
testcase_20 AC 24 ms
6,816 KB
testcase_21 AC 71 ms
8,168 KB
testcase_22 AC 72 ms
8,056 KB
testcase_23 AC 71 ms
8,088 KB
testcase_24 AC 72 ms
7,932 KB
testcase_25 AC 72 ms
7,984 KB
testcase_26 AC 72 ms
8,092 KB
testcase_27 AC 71 ms
8,144 KB
testcase_28 AC 72 ms
8,076 KB
testcase_29 AC 71 ms
7,952 KB
testcase_30 AC 71 ms
8,112 KB
testcase_31 AC 71 ms
8,048 KB
testcase_32 AC 60 ms
7,988 KB
testcase_33 AC 58 ms
7,992 KB
testcase_34 AC 60 ms
8,160 KB
testcase_35 AC 60 ms
8,112 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) a.begin(),a.end()
#define rep(i,n) for(int i=0;i<n;i++)
#define crep(i,x,n) for(int i=x;i<n;i++)
#define drep(i,n) for(int i=n-1;i>=0;i--)
#define vec(...) vector<__VA_ARGS__>
#define _30Vyddk ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0)
using namespace std;
typedef long long ll;
typedef long double ld;
using tpii=pair<int,pair<ll,ll>>;
using pii=pair<int,int>;
using vi=vector<int>;
	
int main(){
_30Vyddk;
	int n,m;
	cin>>n>>m;
	vec(tpii) a(n);
	rep(i,n){
		cin>>a[i].se.fi;
		a[i].fi=i;
	}
	rep(i,n){
		cin>>a[i].se.se;
	}
	sort(all(a),[&](tpii l,tpii r){
		ll _l=l.se.fi-l.se.se;
		ll _r=r.se.fi-r.se.se;
		if(_l>_r) return true;
		return false;
	});
	string pans=string(n,'z');
	rep(i,n){
		if(i<m){
			pans[a[i].fi]='A';
		}else{
			pans[a[i].fi]='B';
		}
	}
	cout<<pans<<"\n";
//	
	return 0;
}
0