一名苦逼的OIer,想成为ACMer

Iowa_Battleship

随笔分类 -  扫描线

BZOJ1227或洛谷2154 [SDOI2009]虔诚的墓主人
摘要:"BZOJ原题链接" "洛谷原题链接" 又是扫描线,题解可看 "大佬的博客" (太懒了不想打) cpp include include using namespace std; const int N = 1e5 + 10; const long long mod = 2147483648LL; s 阅读全文

posted @ 2018-10-30 09:11 Iowa_Battleship 阅读(131) 评论(0) 推荐(0) 编辑

BZOJ1935或洛谷2163 [SHOI2007]园丁的烦恼
摘要:"BZOJ原题链接" "洛谷原题链接" 很容易想到二维前缀和。 设$S[i][j]$表示矩阵$(0, 0)(i, j)$内树木的棵数,则询问的矩形为$(x, y)(xx, yy)$时,答案为$S[xx][yy] S[x 1][yy] S[xx][y 1] + S[x 1][y 1]$。 但这题坐标极 阅读全文

posted @ 2018-10-29 20:17 Iowa_Battleship 阅读(166) 评论(0) 推荐(0) 编辑

导航