rt,关于下面两种写法有什么区别。
if(a[m].count(pre[m])){ cout<<"-1\n"; continue; }
上面的代码 40pts
if(a[m][pre[m]]){ cout<<"-1\n"; continue; }
改成这样过了