Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
124595 梁颢城 单词查找树 C++ 通过 100 2 MS 628 KB 336 2024-01-23 15:08:19

Tests(10/10):


#include<bits/stdc++.h> using namespace std; string a[10010]; signed main(){ int cnt = 0; while(cin >> a[++cnt]); sort(a+1,a+cnt+1); int t = a[1].length(); for(int i =2 ;i <= cnt;i++){ int j = 0; while(a[i][j] == a[i-1][j] && j < a[i-1].length()) j++; t+=a[i].length()-j; } cout << t+1<<endl; return 0; }


测评信息: