| ||||||||||
| Online Judge | Problem Set | Authors | Online Contests | User | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest | |||||||||
这道题数据和描述有出入Each of the remaining lines contains one word, which consists of maximally 50 small letters of the English alphabet
struct cstring
{
char s[55];
friend bool operator<(cstring a, cstring b)
{
return strcmp(a.s, b.s) < 0;
}
}dictionary[51001];
这样就RE
把s[55]改成s[105]就AC了
Followed by: Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator