/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 22ms 632.0 KiB
#3 Accepted 22ms 672.0 KiB
#4 Accepted 22ms 764.0 KiB
#5 Accepted 21ms 644.0 KiB
#6 Accepted 20ms 612.0 KiB
#7 Wrong Answer 21ms 768.0 KiB
#8 Wrong Answer 3ms 532.0 KiB

Code

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

string solve(int n, int k, vector<string>& arr) {
    for (int i = 0; i<k && n>1; ++i) {
        int pos = -1;
        string max_con ="";

        for (int j = 0; j < n - 1; ++j) {
            string concat = arr[j] + arr[j + 1];
            if (concat >= max_con) {
                max_con = concat;
                pos = j;
            }
        }

        arr[pos] = max_con;
        arr.erase(arr.begin() + pos + 1);
        --n;
    }

    return *max_element(arr.begin(), arr.end());
}

int main() {
    int t;
    cin>>t;

    while(t--) {
        int n,k;
        cin>>n>>k;
        vector<string> str(n);

        for(int i=0; i<n; i++) {
            cin>>str[i];
        }

        cout << solve(n, k, str) << endl;
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1083 Number concatenation
Contest
Bangladesh 2.0
Language
C++17 (G++ 13.2.0)
Submit At
2024-08-16 17:26:05
Judged At
2024-11-11 03:11:46
Judged By
Score
30
Total Time
22ms
Peak Memory
768.0 KiB