liuchuo/PAT

[Advanced/C++/1095] bug report

zzzbf opened this issue · 0 comments

zzzbf commented

第60行代码 printf("%d\n", cnt[j - 1] );有bug,如果查询时间比所有有效记录的时间都早,j-1=-1,发生越界错误。可改为 printf("%d\n", j > 0 ? cnt[j - 1] : 0);