当前位置 : 主页 > 网络编程 > 其它编程 >

平时二十五测

来源:互联网 收集:自由互联 发布时间:2023-07-02
今天翻盘了,没有上两次的傻逼错误;题解:其实O(N)check不会T,不是严格的,而且1e6里面的约数很少,从重心跑很快;#incl 今天翻盘了,没有上两次的傻逼错误; 题解: 其实O(
今天翻盘了,没有上两次的傻逼错误;题解:其实O(N)check不会T,不是严格的,而且1e6里面的约数很少,从重心跑很快;#incl

今天翻盘了,没有上两次的傻逼错误;

题解:

其实O(N)check不会T,不是严格的,而且1e6里面的约数很少,从重心跑很快;

#includeusing namespace std;#define ex(i, u) for(int i = h[u]; i; i = G[i].nxt)const int M = 1e6 + 5;int h[M], fg ,tot, siz[M], f[M], tmp[M], n, root, vis[M];struct edge{int v, nxt;}G[M<<1];void add(int u, int v){G[++tot].v = v, G[tot].nxt = h[u], h[u] = tot;}void getroot(int u, int fa){ siz[u] = 1; ex(i, u){ int v = G[i].v; if(v == fa) continue; getroot(v, u); siz[u] += siz[v]; f[u] = max(f[u], siz[v]); } f[u] = max(f[u], n - siz[u]); if(f[u] ='0'c=getchar();} return x*f;}int main(){ freopen("count.in","r",stdin); freopen("count.out","w",stdout); int cnt = 0; n = read(); for(int i = 1; i

这道题还有一个巧妙的剪枝,不用O(N)枚举起点,对于一个点,他在传递过程的位置是1——最后,我们把1当起点,做一遍不行,就把他当第二个,当他作为最后一个后就可以停了,实测跑得飞快(这样不倍增都有60分)

#includeusing namespace std;const int M = 1e5 + 5;int n, a[M], m, s[M];bool check(int k){ int up = n, tot = 0, lst = 0; while(1){ int cnt = 1; for(int i = 1; i <= up; i++){ if(tot + a[i] <= k) tot += a[i]; else tot = a[i], cnt++; } if(cnt k) return 0; } }int read(){ int x=0,f=1;char c=getchar(); while(c'9'){if(c=='-')f=-1;c=getchar();} while(c>='0'c=getchar();} return x*f;}bool check2(int k){ int up = n, tot = 0, lst = 0; while(1){ int cnt = 1; for(int i = 1; i <= up; ){ int lf = i, rg = up, rec = -1; while(lf > 1; if(s[mid] - s[i - 1] + tot <= k) rec = mid, lf = mid + 1; else rg = mid - 1; } tot = 0; i = rec + 1; if(i == up + 1)break; cnt++; } if(cnt k) return 0; }}int main(){ freopen("dinner.in","r",stdin); freopen("dinner.out","w",stdout); n = read(); m = read(); int ans = -1, Mx = 0, sum = 0; for(int i = 1; i <= n; i ++) { a[i] = read(), sum += a[i], Mx = max(Mx, a[i]); s[i] = s[i - 1] + a[i]; } int lf = Mx, rg = sum; if(n <= 5000){ while(lf > 1; if(check(mid)) ans = mid, rg = mid - 1; else lf = mid + 1; } } else { while(lf > 1; if(check2(mid)) ans = mid, rg = mid - 1; else lf = mid + 1; } } printf("%d\n", ans); } View Code

一句话:最短路+缩边

#includeusing namespace std;#define ll long longconst int M = 55, N = 3000;int a[M][M], tot, ans, inf = 2e9, cnt, n, m, tmp[N], dis[N], h[N], stx, sty, edx, edy;bool vis[M][M], inq[N], vis2[M][M], has[N][N];ll fx[N];int zl[8][2] = {{1, 2}, {1, -2}, {-1, 2}, {-1, -2}, {2, 1}, {2, -1}, {-2, 1}, {-2, -1}};struct edge{int v,u, nxt;}G[100005];void add(int u, int v){ G[++tot].v = v,G[tot].u=u, G[tot].nxt = h[u], h[u] = tot;}inline int id(int x,int y){return x * m + y;}inline bool check(int x, int y){ if(x > 0 return 0;}void dfs(int x, int y){ for(int i = 0; i <8; i++){ int nx = x + zl[i][0], ny = y + zl[i][1]; if(!check(nx, ny)) continue; if(a[nx][ny]==0 tmp[++cnt] = id(nx, ny); } else if(a[nx][ny]==1 dfs(nx, ny); } } }bool SPFA(){ queue q; memset(dis, 127, sizeof(dis)); int S = id(stx, sty), T = id(edx, edy); dis[S] = 0, inq[S] = 1, fx[S] = 1; q.push(S); while(!q.empty()){ int u=q.front();q.pop();inq[u]=0; for(int i = h[u]; i; i = G[i].nxt){ int v = G[i].v; if(dis[v] > dis[u] + 1){ dis[v] = dis[u] + 1; fx[v] = fx[u]; //printf("%d %d %d\n", u, v, dis[v]); if(!inq[v] } } else if(dis[v] == dis[u] + 1){ fx[v] += fx[u]; if(!inq[v] } } } } return 0;}int read(){ int x=0,f=1;char c=getchar(); while(c'9'){if(c=='-')f=-1;c=getchar();} while(c>='0'c=getchar();} return x*f;}//0表示格子为空,1表示格子上有敌军,2表示格子上有友军,3表示马的位置,4表示敌方的帅。int main(){ freopen("chess.in","r",stdin); freopen("chess.out","w",stdout); n = read(), m = read(); for(int i = 1; i <= n; i++) for(int j = 1; j <= m; j++){ a[i][j] = read(); if(a[i][j] == 3) stx = i, sty = j, a[i][j] = 0; if(a[i][j] == 4) edx = i, edy = j, a[i][j] = 0; } for(int i = 1; i <= n; i++) for(int j = 1; j <= m; j++) if(!a[i][j]){ for(int k = 0; k <8; k++){ int nx = i + zl[k][0], ny = j + zl[k][1]; if(check(nx, ny) } } for(int i = 1; i <= n; i++) for(int j = 1; j <= m; j++) if(!vis[i][j] cnt = 0; vis[i][j] = 1; dfs(i, j); for(int k = 1; k <= cnt; k++) for(int z = k + 1; z <= cnt; z++){ if(has[tmp[k]][tmp[z]]) continue; has[tmp[k]][tmp[z]] = has[tmp[z]][tmp[k]] = 1; add(tmp[k], tmp[z]); add(tmp[z], tmp[k]); } } /*for(int i = 1; i <= tot; i+=2){ printf("%d %d\n", G[i].u, G[i].v); }*/ SPFA(); dis[id(edx, edy)]

【文章原创作者盐城网站设计 http://www.1234xp.com/yancheng.html 提供,感恩】
网友评论