multi-university contest8

contest8

dp,数学,数据结构感觉都要学一手啊

1010

听说原题?
bzoj2957

题解

分块,将查询不断的加到有贡献的块中,然后进行统计的扫描

用线段树的做法搞可能比价的高效,但是有点难理解
参考博客

ac code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <cstdio>
#include <cstring>
#include <iostream>
#include <cmath>
#include <algorithm>
using namespace std;
const int maxn=110000;
int n,m,siz,ans,pre;
int t[1000],s[1000],h[maxn],p[1000][1000];
namespace fastIO {
#define BUF_SIZE 100000
//fread -> read
bool IOerror = 0;
inline char nc() {
static char buf[BUF_SIZE], *p1 = buf + BUF_SIZE, *pend = buf + BUF_SIZE;
if(p1 == pend) {
p1 = buf;
pend = buf + fread(buf, 1, BUF_SIZE, stdin);
if(pend == p1) {
IOerror = 1;
return -1;
}
}
return *p1++;
}
inline bool blank(char ch) {
return ch == ' ' || ch == '\n' || ch == '\r' || ch == '\t';
}
inline void read(int &x) {
char ch;
while(blank(ch = nc()));
if(IOerror) return;
for(x = ch - '0'; (ch = nc()) >= '0' && ch <= '9'; x = x * 10 + ch - '0');
}
#undef BUF_SIZE
};
using namespace fastIO;
bool cmp(int a,int b)
{
if(a==0) return h[b]>0;
return (long long)h[a]*b<(long long)h[b]*a;
}
int main()
{
read(n), read(m),n++;
int i,j,a,b,l,r,mid;
siz=int(0.5*sqrt(n*log(1.0*n)/log(2.0)));
//siz = sqrt(n*1.0);
for(i=1;i<=m;i++)
{
read(a), read(b);
h[a]=b,p[a/siz][0]=0;
for(j=a/siz*siz;j<(a/siz+1)*siz;j++)
if(cmp(p[a/siz][p[a/siz][0]],j))//0保存的是块的大小,后面的保存的是上升序列的下标
p[a/siz][++p[a/siz][0]]=j;
//pre表示前一块的最大值,j表示现在的访问的块
for(ans=pre=j=0;j*siz<n;j++)
{
l=1,r=p[j][0]+1;
while(l<r)
{
mid=l+r>>1;
if(cmp(pre,p[j][mid])) r=mid;
else l=mid+1;
}
ans += p[j][0]+1-r;
if(p[j][0]>=l) pre=p[j][p[j][0]];
}
printf("%d\n",ans);
}
return 0;
}

线段树的题目

hdu 3308 LCIS
hdu 3564 LIS

未解决的问题

文章目录
  1. 1. 1010
    1. 1.1. 题解
    2. 1.2. ac code
  2. 2. 线段树的题目
  3. 3. 未解决的问题
{{ live2d() }}