답안 #314325

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
314325 2020-10-19T17:37:13 Z ShiftyBlock Type Printer (IOI08_printer) C++11
10 / 100
732 ms 1940 KB
#include <bits/stdc++.h>
using namespace std;
#define f first
#define s second
#define pii pair<int, int>
#define long long long
#define v vector
#define rep(i,a,b) for(int i=a; i<b; i++)
void setIO(string name, int submit) {
    if (submit) {
        ios_base::sync_with_stdio(0);
        cin.tie(0);
        freopen((name + ".in").c_str(), "r", stdin);
        freopen((name + ".out").c_str(), "w", stdout);
    }
    else{
        ios_base::sync_with_stdio(0);
        cin.tie(0);
    }
    
}
string longest;
bool compare(string a, string b){
	int samea=0; int sameb=0;
    rep(j,0, a.size()){
   		if(longest[j]==a[j]) samea++;
 	 	else break;
    }
    rep(j,0, b.size()){
   		if(longest[j]==b[j]) sameb++;
 	 	else break;
    }
    if(samea==sameb){
    	int cmp= a.compare(b);
    	if(cmp<0) return true;
    	else return false;
    }
    return samea<sameb;

}

int main() {
    setIO("printer", 0);

    int N;
    cin>>N;
    v<string> arr;
    for (int i = 0; i < N; ++i)
    {
    	string line; cin>>line; arr.push_back(line);
    }
        sort(arr.begin(), arr.end(), compare);

    int basecost=0;
   int worst=0;
    rep(i,0,N){
    	int len=arr[i].size();int plen=arr[i-1].size();
    	if(arr[worst].size()<len){
    		worst=i;
    	}
    	if(i==0){
    		basecost+=len;
    	}
    	else{
    		basecost+=plen;
    		int same=0;
    		rep(j,0, min(plen, len)){
    			if(arr[i-1][j]==arr[i][j]) same++;
    			else break;
    		}
    		basecost-=same;
    		basecost+=len-same;
    	}
    }
    longest=arr[worst];
    cout<<basecost+arr.size()+arr[arr.size()-1].size()-arr[worst].size()<<endl;
    rep(i, 0,N){
    	int len=arr[i].size();
    	int plen=arr[i-1].size();
    	if(i==0){
    		rep(j,0,len){
    			cout<<arr[i][j]<<endl;
    		}
    		cout<<"P"<<endl;
    	}
    	else{
    		int same=0;
    		rep(j,0, min(plen,len)){
    			if(arr[i-1][j]==arr[i][j]) same++;
    			else break;
    		}
    		rep(j,0, plen-same) {
    			cout<<"-"<<endl;
    		}
    		rep(j,same, len){
    			cout<<arr[i][j]<<endl;
    		}
    		cout<<"P"<<endl;
    	}
    	
    }
    return 0;
}








Compilation message

printer.cpp: In function 'bool compare(std::string, std::string)':
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
   25 |     rep(j,0, a.size()){
      |         ~~~~~~~~~~~~~             
printer.cpp:25:5: note: in expansion of macro 'rep'
   25 |     rep(j,0, a.size()){
      |     ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
   29 |     rep(j,0, b.size()){
      |         ~~~~~~~~~~~~~             
printer.cpp:29:5: note: in expansion of macro 'rep'
   29 |     rep(j,0, b.size()){
      |     ^~~
printer.cpp: In function 'int main()':
printer.cpp:58:26: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   58 |      if(arr[worst].size()<len){
      |         ~~~~~~~~~~~~~~~~~^~~~
printer.cpp: In function 'void setIO(std::string, int)':
printer.cpp:13:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
   13 |         freopen((name + ".in").c_str(), "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:14:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
   14 |         freopen((name + ".out").c_str(), "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 384 KB Output is correct
2 Correct 0 ms 384 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Expected EOF
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Expected EOF
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Expected EOF
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 384 KB Expected EOF
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 31 ms 504 KB Expected EOF
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 118 ms 632 KB Expected EOF
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 297 ms 1032 KB Expected EOF
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 732 ms 1940 KB Expected EOF
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 613 ms 1904 KB Expected EOF
2 Halted 0 ms 0 KB -