程式碼:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<cstdio> | |
#include<algorithm> | |
#include<string> | |
using namespace std; | |
int main(){ | |
int N,n,i,j,sum;//N->有幾筆測資,n->每筆測資有幾個數 | |
scanf("%d",&N); | |
string st[1001],temp; | |
while(N--){ | |
scanf("%d",&n); | |
for(i=0;i<n;i++) | |
cin>>st[i]; | |
sort(st,st+n);//依字典順序排序 | |
temp = st[0]; | |
sum = st[0].size(); | |
for(i=1;i<n;i++){ | |
for(j=0;j<temp.size();j++) | |
if(st[i][j]!=temp[j]) break; | |
sum+=(st[i].size()-j); | |
temp = st[i]; | |
} | |
cout<<sum<<endl;//輸出答案 | |
for(i=0;i<n;i++) | |
cout<<st[i]<<endl; | |
} | |
} |