摘要:
//拒绝抄袭 //f[i]表示洗劫前i家店铺的最大收益 #include <iostream> #include <cstdio> using namespace std; const int N = 100010; int w[N], f[N]; int main(){ int T; //f[0] 阅读全文
摘要:
#include<iostream> #include<cstdio> #define A 1000000+5 using namespace std; int i,j; char ch[A]; inline int ask(int m,int n){ if(m==0) return n+1; if 阅读全文