結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー Nzt3Nzt3
提出日時 2022-09-28 13:17:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 211,956 KB
実行使用メモリ 9,628 KB
最終ジャッジ日時 2024-06-02 01:30:45
合計ジャッジ時間 11,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 37 ms
6,944 KB
testcase_17 AC 66 ms
8,992 KB
testcase_18 AC 49 ms
7,680 KB
testcase_19 AC 20 ms
6,944 KB
testcase_20 AC 23 ms
6,940 KB
testcase_21 AC 69 ms
9,480 KB
testcase_22 AC 66 ms
9,372 KB
testcase_23 AC 68 ms
9,460 KB
testcase_24 AC 67 ms
9,504 KB
testcase_25 AC 69 ms
9,508 KB
testcase_26 AC 69 ms
9,556 KB
testcase_27 AC 68 ms
9,424 KB
testcase_28 AC 68 ms
9,344 KB
testcase_29 AC 73 ms
9,364 KB
testcase_30 AC 70 ms
9,628 KB
testcase_31 AC 69 ms
9,344 KB
testcase_32 AC 69 ms
9,476 KB
testcase_33 AC 71 ms
9,496 KB
testcase_34 AC 71 ms
9,512 KB
testcase_35 AC 73 ms
9,460 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,K;
  cin>>N>>K;
  vector<array<long long,2>>A(N);
  for(auto &i:A)cin>>i[0];
  for(auto &i:A)cin>>i[1];
  long long s=0;
  for(int i=0;i<N;i++)s+=A[i][1];
  vector<pair<long long,int>>D(N);
  for(int i=0;i<N;i++){
    D[i]={A[i][0]-A[i][1],i};
  }
  sort(D.begin(),D.end());
  reverse(D.begin(),D.end());
  vector<bool>B(N,true);
  for(int i=0;i<K;i++){
    B[D[i].second]=false;
  }
  for(auto i:B)cout<<(i?'B':'A');
  cout<<'\n';
}
0