제출 #337835

#제출 시각아이디문제언어결과실행 시간메모리
337835jainbot27Type Printer (IOI08_printer)C++17
10 / 100
46 ms4236 KiB
#include <bits/stdc++.h> using namespace std; const int mxN = 25001; string word[mxN]; int n, maxi, maxs; pair<pair<int, string>, int> v[mxN]; string lst = ""; string res; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cin >> n; for(int i=0; i < n; i++) { cin >> word[i]; if(word[i].size() > maxs) maxs=word[i].size(), maxi=i; } for(int i=0; i < n; i++){ int cnt=0; for(int j = 0; j < word[i].size(); j++){ if(word[i][j]!=word[maxi][j]) break; cnt++; } v[i]={{cnt, word[i]}, i}; } sort(word, word + n); for(int i=0; i < n; i++){ string cur = v[i].first.second; cur.resize(25); int cnt = 0; for(int j =0; j < lst.size(); j++){ if(lst[j]!=cur[j]) break; cnt++; } cur = v[i].first.second; for(int j =0; j < lst.size() - cnt; j++) res += '-'; for(int j = cnt; j < cur.size(); j++) res += (cur[j]); res+='P'; lst=cur; } cout << res.size() << "\n"; for(int i = 0; i < res.size(); i++) cout << res[i] << '\n'; return 0; }

컴파일 시 표준 에러 (stderr) 메시지

printer.cpp: In function 'int main()':
printer.cpp:17:27: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   17 |         if(word[i].size() > maxs)
      |            ~~~~~~~~~~~~~~~^~~~~~
printer.cpp:22:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   22 |         for(int j = 0; j < word[i].size(); j++){
      |                        ~~^~~~~~~~~~~~~~~~
printer.cpp:33:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |         for(int j =0; j < lst.size(); j++){
      |                       ~~^~~~~~~~~~~~
printer.cpp:39:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   39 |         for(int j =0; j < lst.size() - cnt; j++)  res += '-';
      |                       ~~^~~~~~~~~~~~~~~~~~
printer.cpp:40:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   40 |         for(int j = cnt; j < cur.size(); j++) res += (cur[j]);
      |                          ~~^~~~~~~~~~~~
printer.cpp:45:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |     for(int i = 0; i < res.size(); i++) cout << res[i] << '\n';
      |                    ~~^~~~~~~~~~~~
#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...