腦癱類
滾動陣列打錯
WA:dp[i^1][j]=tp[q[t]]+1ll*j*c;
AC:dp[i&1][j]=tp[q[t]]+1ll*j*c;
加入佇列
WA:q[h++]=j;
AC:q[++h]=j;
個人習慣
單調佇列搞反首尾
WA:while(h-t+1>0&&tp[q[t]]<tp[j])h--;
AC:while(h-t+1>0&&tp[q[h]]<tp[j])h--;
個人習慣
多測不清空,爆零兩行淚
WA:**
AC:ans=0;
技術性混淆/錯誤
讀入
WA:d[read()][read()]=1;
AC:int x=read(),y=read();d[x][y]=1;
眼瞎
\(\texttt{YES}\)
WA:YSE
AC:YES
Yes
YE5
?