結果
問題 | No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia |
ユーザー | llc5pg |
提出日時 | 2021-11-15 12:08:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 89 ms / 2,000 ms |
コード長 | 2,643 bytes |
コンパイル時間 | 2,188 ms |
コンパイル使用メモリ | 193,444 KB |
実行使用メモリ | 7,368 KB |
最終ジャッジ日時 | 2024-05-08 08:32:41 |
合計ジャッジ時間 | 11,902 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 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 | 3 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 | 3 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 45 ms
5,376 KB |
testcase_17 | AC | 79 ms
7,024 KB |
testcase_18 | AC | 48 ms
6,812 KB |
testcase_19 | AC | 25 ms
5,376 KB |
testcase_20 | AC | 30 ms
5,376 KB |
testcase_21 | AC | 89 ms
7,240 KB |
testcase_22 | AC | 70 ms
7,240 KB |
testcase_23 | AC | 87 ms
7,112 KB |
testcase_24 | AC | 74 ms
7,240 KB |
testcase_25 | AC | 71 ms
7,368 KB |
testcase_26 | AC | 86 ms
7,108 KB |
testcase_27 | AC | 86 ms
7,112 KB |
testcase_28 | AC | 74 ms
7,112 KB |
testcase_29 | AC | 85 ms
7,116 KB |
testcase_30 | AC | 86 ms
7,112 KB |
testcase_31 | AC | 63 ms
7,116 KB |
testcase_32 | AC | 78 ms
7,240 KB |
testcase_33 | AC | 78 ms
7,240 KB |
testcase_34 | AC | 77 ms
7,240 KB |
testcase_35 | AC | 77 ms
7,236 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int MOD = (1e9+7); void printmat(const vector<vector<char>>& mat) { for (auto row : mat) { for (auto elem : row) cout << elem << " "; cout << endl; } } void printv(const vector<int>& v) { for (auto elem : v) cout << elem << " "; cout << endl; } void printvs(const vector<set<int>>& vs) { for (auto row : vs) { for (auto elem : row) cout << elem << ", "; cout << endl; } } void printht(const unordered_map<int, int>& ht) { for (auto elem : ht) cout << elem.first << " : " << elem.second << endl; } void printmp(const map<int, int>& ht) { for (auto elem : ht) cout << elem.first << " : " << elem.second << endl; } void printst(const set<int>& st) { for (auto elem : st) cout << elem << " "; cout << endl; } map<long long, long long> primeFactors(long long n) { map<long long, long long> ans; while (n % 2 == 0) { ans[2]++; n = n/2; } for (long long i = 3; i*i <= (n); i = i + 2) { while (n % i == 0) { ans[i]++; n = n/i; } } if (n > 2) ans[n]++; return ans; } int find_f(const vector<int>& uf, int i) { while (uf[i]!=i) i = uf[i]; return i; } bool union_f(vector<int>& uf, vector<int>& sz, int a, int b) { a = find_f(uf, a); b = find_f(uf, b); //cout << "a, b = " << a << ", " << b << endl; if (a==b) return false; if (sz[a] < sz[b]) { //cout << "sz[a], sz[b] = " << sz[a] << ", " << sz[b] << endl; //cout << "a, b = " << a << ", " << b << endl; swap(a,b); //cout << "a, b = " << a << ", " << b << endl; } sz[a] += sz[b]; uf[b] = a; return true; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int T=1, caseIdx=0; //cin >> T; while (T--) { //caseIdx++; int n, k; cin >> n >> k; vector<int> va(n), vb(n); //priority_queue<pair<int,int>, vector<pair<int,int>>, greater<pair<int,int>>> pq; priority_queue<pair<int,int>> pq; string ans; for (int i=0; i<n; i++) cin >> va[i]; for (int i=0; i<n; i++) { cin >> vb[i]; pq.push(make_pair(va[i]-vb[i], i)); ans += "B"; } //printv(va); printv(vb); while (k--) { auto curr = pq.top(); pq.pop(); ans[curr.second] = 'A'; } cout << ans << endl; //cout << "Case #" << caseIdx << ": " << s << endl; } }