摘要:
枚举两点,算一下斜率 sort一遍 判个重 输出解 25行 搞定…//By SiriusRen#include #include #include using namespace std;int n,top,ans;double x[205],y[205],s[40005],t... 阅读全文
摘要:
lazy写崩了…….查了好久/* U—> [l,r]–>1 I—> [1,l-1] [r+1,+无穷] –>0 D—> [l,r]–>0 C—> [1,l-1] [r+1,+无穷]–>0 xor[l,r] S—> [l,r]–>xor *///By SiriusRen#... 阅读全文
摘要:
权值为1~3 好了 此题是水题…… i表示到了第i个数,j表示结尾的数是j f[i][j]=min(f[i][j],f[i-1][k]+(a[i]!=j)) 1#include #include using namespace std;int n,a[33333],f[333... 阅读全文