Submission #546867

#TimeUsernameProblemLanguageResultExecution timeMemory
546867ussef_abdallahType Printer (IOI08_printer)C++14
100 / 100
56 ms5572 KiB
#include <bits/stdc++.h> using namespace std; int common(string &x, string &y) { int mn = min(x.length(), y.length()); int cnt = 0; for (int i = 0; i < mn; i++) { if (x[i] == y[i]) cnt++; else break; } return cnt; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; vector<string> a(n); string longest = ""; for (int i = 0; i < n; ++i) { cin >> a[i]; if (a[i].length() > longest.length()) longest = a[i]; } sort(a.begin(), a.end(), [&](string &x, string &y) { int commonX = common(x, longest); int commonY = common(y, longest); if (commonX == commonY) return x < y; return commonX < commonY; }); string cur = ""; vector<char> ans; for (string &s : a) { int sPtr = 0, curPtr = 0; while (curPtr < cur.length() && sPtr < s.length() && cur[curPtr] == s[sPtr]) { curPtr++; sPtr++; } for (int j = cur.length() - 1; j >= curPtr; j--) { cur.pop_back(); ans.push_back('-'); } while (sPtr < s.length()) { ans.push_back(s[sPtr]); cur += s[sPtr]; sPtr++; } ans.push_back('P'); } cout << ans.size() << '\n'; for (char &c : ans) { cout << c << "\n"; } return 0; }

Compilation message (stderr)

printer.cpp: In function 'int main()':
printer.cpp:40:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   40 |         while (curPtr < cur.length() && sPtr < s.length()
      |                ~~~~~~~^~~~~~~~~~~~~~
printer.cpp:40:46: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   40 |         while (curPtr < cur.length() && sPtr < s.length()
      |                                         ~~~~~^~~~~~~~~~~~
printer.cpp:50:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   50 |         while (sPtr < s.length()) {
      |                ~~~~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...