【纪中受难记】——Day15:今晚吃烧烤(最后吃了火锅)
明天又有假放,考的怎样无所谓了。
40/20/20
【NOIP2013模拟联考3】库特的向量(code) (Standard IO)
Time Limits: 1000 ms Memory Limits: 131072 KB Detailed Limits
Time Remaining: 00:00:00没写出这道题是我的失败。。。签到题,sort两遍乘起来即可。
#include<bits/stdc++.h> typedef long long ll; using namespace std; const int N=1e3+10; ll n,a[N],b[N]; bool cmp(ll t1,ll t2){ return t1>t2; } int main(){ scanf("%lld",&n); for(int i=1;i<=n;i++){ scanf("%lld",&a[i]); } for(int i=1;i<=n;i++){ scanf("%lld",&b[i]); } sort(a+1,a+n+1); sort(b+1,b+n+1,cmp); ll sum=0; for(int i=1;i<=n;i++){ sum+=a[i]*b[i]; } printf("%lld",sum); return 0; }
3456. 【NOIP2013模拟联考3】恭介的法则(rule) (Standard IO)
Time Limits: 1000 ms Memory Limits: 131072 KB Detailed Limits
数学不好,搞不定数论题。
具体看过程:
质因数分解+压位高精。
但是我不会压位高精,留坑待补。
3457. 【NOIP2013模拟联考3】沙耶的玩偶(doll) (Standard IO)
Time Limits: 1000 ms Memory Limits: 131072 KB Detailed Limits
这道题一开始想着用状压dp,发现太难搞,正解网络流,就是个最小路径覆盖。
连边:
1.将每个状态转移连上值为1的边,注意拆点,是从旧连向新。
2.源点到能走的旧点连值为1的边,新点到汇点连值为1的边。
3.以上都要连反向边,值为0.
跑一遍最大流(二分图匹配),拿空点数减去匹配数就是最终答案。
#include <bits/stdc++.h> using namespace std; const int N = 6e5+10,inf = 1e9; int n, m, S, T, ans, d[N],ed,head[N],px[5],py[5],maxflow,ma[60][60],r,c; int tot=-1; struct edge{ int w; int next; int to; }e[N]; inline void addedge(int x, int y, int z) { e[++tot].to=y; e[tot].next=head[x]; e[tot].w=z; head[x]=tot; }//建图 int pos(int x,int y){ return (x-1)*n+y; } inline bool bfs() { memset(d, 0, sizeof(d)); queue<int> q; q.push(S); d[S] = 1; while (q.size()) { int x = q.front(); q.pop(); for (int i = head[x]; i!=-1; i = e[i].next) { int y = e[i].to, z = e[i].w; if (d[y] || !z) continue; q.push(y); d[y] = d[x] + 1; if (y == T) return 1; } } return 0; } int dinic(int x, int flow) { if (x == T) return flow; int rest = flow; for (int i = head[x]; i!=-1 && rest; i = e[i].next) { int y = e[i].to, z = e[i].w; if (d[y] != d[x] + 1 || !z) continue; int k = dinic(y, min(rest, z)); if (!k) d[y] = 0; else { e[i].w -= k; e[i^1].w += k; rest -= k; } } return flow - rest; } void solve(){ int now=0; while(bfs()){ while(now=dinic(S,inf)) maxflow+=now; } printf("%d",ans-maxflow); } int main() { memset(head,-1,sizeof(head)); scanf("%d%d%d%d",&m,&n,&r,&c); char s[60]; S=0,T=m*n*2+1; for(int i=1;i<=m;i++){ scanf("%s",s); for(int j=1;j<=n;j++){ if(s[j-1]=='x') ma[i][j]=1; } } px[1]=r;px[2]=r;px[3]=c;px[4]=c; py[1]=c;py[2]=-c;py[3]=r;py[4]=-r; for(int i=1;i<=m;i++){ for(int j=1;j<=n;j++){ if(ma[i][j]) continue; addedge(S,pos(i,j),1); addedge(pos(i,j),S,0); addedge(pos(i,j)+n*m,T,1); addedge(T,pos(i,j)+m*n,0); ans++; for(int k=1;k<=4;k++){ int xx=i+px[k]; int yy=j+py[k]; if(xx>m||yy<=0||yy>n||ma[xx][yy]) continue; addedge(pos(i,j),pos(xx,yy)+m*n,1); addedge(pos(xx,yy)+m*n,pos(i,j),0); } } } solve(); return 0; }
(我不会告诉你我的二分图匹配是直接抄的)
总结:好好休息。
——抓住了时间,却不会利用的人,终究也逃不过失败的命运。