/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 6ms 536.0 KiB
#3 Accepted 5ms 612.0 KiB
#4 Accepted 3ms 532.0 KiB
#5 Accepted 3ms 532.0 KiB
#6 Accepted 3ms 536.0 KiB
#7 Accepted 4ms 532.0 KiB
#8 Accepted 2ms 532.0 KiB
#9 Accepted 2ms 324.0 KiB
#10 Accepted 8ms 532.0 KiB
#11 Accepted 4ms 532.0 KiB
#12 Accepted 7ms 532.0 KiB
#13 Accepted 8ms 532.0 KiB
#14 Accepted 8ms 532.0 KiB
#15 Accepted 8ms 532.0 KiB

Code

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

#define ll long long
#define endl '\n'

void solve()
{
    int n,k; cin >> n >> k;
    string arr[n];
    for (int i = 0; i < n; i++) {
        cin >> arr[i];
    }

    string ans = "0";
    for (int i = 0; i < n-k; i++) {
        string s = "";
        for (int j = i; j <= i+k; j++) {
            s += arr[j];
        }
        //cout << s << endl;
        if (ans.size() < s.size()) {
            ans = s;
        }
        else if (ans.size() == s.size()) {
            for (int j = 0; j < ans.size(); j++) {
                if (s[j] > ans[j]) {
                    ans = s;
                    break;
                }
                else if (ans[j] > s[j]) {
                    break;
                }
            }
        }
    }
    cout << ans << endl;
}

int32_t main()
{   
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t = 1; cin >> t;
    while(t--) solve();
    return 0;
} 

Information

Submit By
Type
Submission
Problem
P1083 Number concatenation
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 20:10:21
Judged At
2024-08-16 20:10:21
Judged By
Score
100
Total Time
8ms
Peak Memory
612.0 KiB