Submission #964367

# Submission time Handle Problem Language Result Execution time Memory
964367 2024-04-16T17:53:05 Z anango Type Printer (IOI08_printer) C++17
60 / 100
1000 ms 18396 KB
#include <bits/stdc++.h>
#define int long long
using namespace std;

int pref(string s1, string s2) {
    for (int i=0; i<s1.size(); i++) {
        if (i>=s2.size() || s1[i]!=s2[i]) {
            return i;
        }
    }
    return min(s1.size(), s2.size());
}

signed main() {
    //freopen("input.txt", "r", stdin);
	//freopen("output.txt", "w", stdout);
    int n;
    cin >> n;
    vector<string> v;
    int ma=0;
    int mpos=-1;
    vector<int> answers(n);
    for (int i=0; i<n; i++) {
        string s;
        cin >> s;
        v.push_back(s);
        if (s.size()>ma) {
            ma=s.size();
            mpos=i;
        }
    }
    string mword=v[mpos];
    for (int i=0; i<n; i++) {
        answers[i] = pref(v[i], mword);
    }
    vector<int> w;
    for (int i=0; i<n; i++) {
        w.push_back(i);
    }
    sort(w.begin(), w.end(), [=](const int s1, const int s2) {

        if (answers[s1]!=answers[s2]) {
            return answers[s1]<answers[s2];
        }
        return v[s1]<v[s2];
    });
    vector<string> v2(n);
    for (int i=0; i<n; i++) {
        v2[i] = v[w[i]];
    }
    int tot=0;
    vector<char> prints;
    string current;
    for (int i=0; i<n; i++) {
        int t=pref(current,v2[i]);
        while (current.size()>t) {
            prints.push_back('-');
            current.pop_back();
        }
        for (int j=current.size(); j<v2[i].size(); j++) {
            prints.push_back(v2[i][j]);
        }
        current = v2[i];


        prints.push_back('P');
    }
    cout << prints.size() << endl;
    for (auto i:prints) {
        cout << i << endl;
    }
}

Compilation message

printer.cpp: In function 'long long int pref(std::string, std::string)':
printer.cpp:6:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    6 |     for (int i=0; i<s1.size(); i++) {
      |                   ~^~~~~~~~~~
printer.cpp:7:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    7 |         if (i>=s2.size() || s1[i]!=s2[i]) {
      |             ~^~~~~~~~~~~
printer.cpp: In function 'int main()':
printer.cpp:27:21: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
   27 |         if (s.size()>ma) {
      |             ~~~~~~~~^~~
printer.cpp:56:30: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
   56 |         while (current.size()>t) {
      |                ~~~~~~~~~~~~~~^~
printer.cpp:60:37: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   60 |         for (int j=current.size(); j<v2[i].size(); j++) {
      |                                    ~^~~~~~~~~~~~~
printer.cpp:51:9: warning: unused variable 'tot' [-Wunused-variable]
   51 |     int tot=0;
      |         ^~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 600 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 344 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 348 KB Output is correct
2 Correct 12 ms 600 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 27 ms 604 KB Output is correct
2 Correct 39 ms 1112 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 263 ms 2396 KB Output is correct
2 Execution timed out 1062 ms 4700 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1052 ms 6224 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1055 ms 13476 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1039 ms 18396 KB Time limit exceeded
2 Halted 0 ms 0 KB -