cin+cout加上ios::sync_with_stdio(false), cin.tie(NULL), cout.tie(NULL)似乎還是不夠快
改成scanf+puts才過,不過不要每次都直接輸出,先存在字元陣列裡,快滿了再輸出
完整程式碼:
https://66lemon66.blogspot.com/2021/03/zerojudge-f163-c.html
搞錯了,其實是加上ios::sync_with_stdio(false), cin.tie(NULL), cout.tie(NULL)是可以AC的(0.8s)
後來優化io壓到0.4s