这套题我只会写第二题。。。我。。。

T1:给出一个含有向边和无向边的混合图,如何确定无向边的方向使得图中不存在环。保证有解。多解情况输出任意解。

=>我往最大流的残量网络的方向去想了。。。因为混合图求欧拉回路用的就是最大流。。。然而什么都想不出来。。。

正解:

原图是个有向无环图,也就是说是个拓扑图,如果加完边后依然是拓扑图,也就是依然无环。

对原图做拓扑排序,得到每个点的入队时间,加边的时候把边定向为从入队时间早的点到晚的点,原来的入队顺序就依然成立,就无环了。

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<cctype>
  4. #include<algorithm>
  5. using namespace std;
  6. #define rep(i,s,t) for(int i=s;i<=t;i++)
  7. #define dwn(i,s,t) for(int i=s;i>=t;i--)
  8. #define clr(x,c) memset(x,c,sizeof(x))
  9. #define qwq(x) for(edge *o=head[x];o;o=o->next)
  10. int read(){
  11. int x=0;char c=getchar();
  12. while(!isdigit(c)) c=getchar();
  13. while(isdigit(c)) x=x*10+c-'0',c=getchar();
  14. return x;
  15. }
  16. const int nmax=1e5+5;
  17. const int inf=0x7f7f7f7f;
  18. struct edge{
  19. int to;edge *next;
  20. };edge es[nmax],*pt=es,*head[nmax];
  21. void add(int u,int v){
  22. pt->to=v;pt->next=head[u];head[u]=pt++;
  23. }
  24. int q[nmax],in[nmax],qe[nmax];
  25. int main(){
  26. freopen("dizzy.in","r",stdin);freopen("dizzy.out","w",stdout);
  27. int n=read(),m=read(),tm=read(),u,v;
  28. rep(i,1,m) u=read(),v=read(),add(u,v),in[v]++;
  29. int cur=0;
  30. rep(i,1,n) if(!in[i]) q[i]=++cur,qe[cur]=i;
  31. rep(i,1,cur) qwq(qe[i]) if(!--in[o->to]) q[o->to]=++cur,qe[cur]=o->to;
  32. //rep(i,1,n) printf("%d ",q[i]);printf("\n");
  33. rep(i,1,tm) {
  34. u=read(),v=read();
  35. if(q[u]>q[v]) swap(u,v);
  36. printf("%d %d\n",u,v);
  37. }
  38. fclose(stdin);fclose(stdout);
  39. return 0;
  40. }
  41. /*
  42. 4 5 3
  43. 1 2
  44. 1 3
  45. 2 3
  46. 2 4
  47. 3 4
  48. */

T2:给出一个500*500的矩阵。可横着切A刀,竖着切B刀。求最小块的最大值。

=>二分答案。。。发现尽量的弄到函数里面清晰好多啊T_T

  1. //特别奇怪。输出ans的时候我写成了%lld就全WA。。。还以为没有什么关系的TAT
  2. #include<cstdio>
  3. #include<cstring>
  4. #include<cctype>
  5. #include<algorithm>
  6. using namespace std;
  7. #define rep(i,s,t) for(int i=s;i<=t;i++)
  8. #define dwn(i,s,t) for(int i=s;i>=t;i--)
  9. #define clr(x,c) memset(x,c,sizeof(x))
  10. #define ll long long
  11. int read(){
  12. int x=0;char c=getchar();
  13. while(!isdigit(c)) c=getchar();
  14. while(isdigit(c)) x=x*10+c-'0',c=getchar();
  15. return x;
  16. }
  17. const int nmax=505;
  18. const int inf=0x7f7f7f7f;
  19. int a[nmax][nmax],n,m,A,B;
  20. bool pd(int r,int l,int x){
  21. int pre=0,ans=0,tp=0;
  22. rep(i,1,m) if((tp+=a[r][i]-a[l][i])>=x) pre=i,++ans,tp=0;
  23. return ans>=B;
  24. }
  25. bool check(int x){
  26. int pre=0,ans=0;
  27. rep(i,1,n) if(pd(i,pre,x)) pre=i,++ans;
  28. return ans>=A;
  29. }
  30. int main(){
  31. freopen("browine.in","r",stdin);freopen("browine.out","w",stdout);
  32. n=read(),m=read(),A=read(),B=read();int sm=0;
  33. rep(i,1,n) rep(j,1,m) a[i][j]=read(),sm+=a[i][j];
  34. rep(j,1,m) rep(i,1,n) a[i][j]+=a[i-1][j];
  35. int l=0,r=sm,ans=0,mid;
  36. while(l<=r){
  37. mid=(l+r)>>1;
  38. if(check(mid)) ans=mid,l=mid+1;
  39. else r=mid-1;
  40. }
  41. printf("%d\n",ans);
  42. fclose(stdin);fclose(stdout);
  43. return 0;
  44. }
  45. /*
  46. 5 4 4 2
  47. 1 2 2 1
  48. 3 1 1 1
  49. 2 0 1 3
  50. 1 1 1 1
  51. 1 1 1 1
  52. */

T3:给出一个500*500的矩阵,要求在同一条直线上取n个点,点的间距>=d。求有多少中方案?

=>maya确定两个端点后这根本不能无法确定有多少种方案啊。。。

正解

枚举一个点(x,y),先算出(0,0)——>(x,y)这条直线上放N个点,(0,0)处一定放第一个点,(x,y)处一定放最后一个点的方案数,把最后一个点平移(其他N-1个点跟着整体平移)到以(x,y)为左上角,(w+1,h+1)为右下角的矩形中的任何一个格点又是不重复的新的方案。

第一步的方案可以这样计算:

设g=gcd(x,y),则(0,0)——>(x,y)的线段上共有g+1个相邻的距离相同的格点,把这些点从1到g+1编号。设比i点编号大的点中离i最近且距离不小于d的点是i+k,我们要在这g-1个点(开头结尾已定)中取n-2个点,满足编号

Xi-Xi-1>=k。此问题等价于

1+k(n-1)<=X2+k(n-2)<=……<=Xn-1+k<=g+1的解的方案数

上面这个问题又等价于

1+k(n-1)+1<=X2+k(n-2)+1<X3+k(n-3)+2<……

<Xn-1+k+(n-2)<=g+1+n-2 的解的方案数

这样方案数就显然了,首先开头结尾都定了,我们要在[1+k(n-1)+1,g+1+n-2]这g-(k-1)(n-1)-1个数中选出n-2个数,方案数就是原问题的方案数。

时间复杂度O(WH)

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<cctype>
  4. #include<algorithm>
  5. #include<cmath>
  6. using namespace std;
  7. #define rep(i,s,t) for(int i=s;i<=t;i++)
  8. #define dwn(i,s,t) for(int i=s;i>=t;i--)
  9. #define clr(x,c) memset(x,c,sizeof(x))
  10. int read(){
  11. int x=0;char c=getchar();
  12. while(!isdigit(c)) c=getchar();
  13. while(isdigit(c)) x=x*10+c-'0',c=getchar();
  14. return x;
  15. }
  16. const int nmax=505;
  17. const int inf=0x7f7f7f7f;
  18. const int mod=1e9;
  19. int c[nmax][nmax],g[nmax][nmax];
  20. void M(int &a){
  21. if(a>=mod) a-=mod;
  22. }
  23. int gcd(int a,int b){
  24. return b==0?a:gcd(b,a%b);
  25. }
  26. void init(){
  27. c[1][0]=1;c[1][1]=1;
  28. rep(i,0,500) c[i][0]=1;
  29. rep(i,2,500) rep(j,1,i) M(c[i][j]=c[i-1][j]+c[i-1][j-1]);
  30. rep(i,1,500) rep(j,1,500) g[i][j]=gcd(i,j);
  31. rep(i,1,500) g[i][0]=i,g[0][i]=i;g[0][0]=0;
  32. }
  33. int cal(int n,int m,int A,int D){
  34. if(A==1) return (n+1)*(m+1);
  35. int ans=0,k;
  36. rep(i,0,n) rep(j,0,m){
  37. k=(int)((double)D*(g[i][j])/sqrt((double)i*i+j*j)+0.999999);
  38. if(g[i][j]-1<A-2||g[i][j]-(k-1)*(A-1)-1<0) continue;
  39. M(ans+=1ll*(!i||!j?1:2)*c[g[i][j]-(k-1)*(A-1)-1][A-2]*(n-i+1)%mod*(m-j+1)%mod);
  40. }
  41. return ans;
  42. }
  43. int main(){
  44. freopen("backyard.in","r",stdin);freopen("backyard.out","w",stdout);
  45. int T=read();init();
  46. rep(_T,1,T){
  47. int A=read(),n=read(),m=read(),D=read();
  48. printf("%d\n",cal(n,m,A,D));
  49. }
  50. fclose(stdin);fclose(stdout);
  51. return 0;
  52. }
  53. /*
  54. 6
  55. 2 4 4 1
  56. 13 36 48 5
  57. 5 5 5 1
  58. 50 49 49 1
  59. 6 5 5 2
  60. 10 55 75 5
  61. */

  

noip模拟赛#24的更多相关文章

  1. NOIP模拟赛20161022

    NOIP模拟赛2016-10-22 题目名 东风谷早苗 西行寺幽幽子 琪露诺 上白泽慧音 源文件 robot.cpp/c/pas spring.cpp/c/pas iceroad.cpp/c/pas ...

  2. contesthunter暑假NOIP模拟赛第一场题解

    contesthunter暑假NOIP模拟赛#1题解: 第一题:杯具大派送 水题.枚举A,B的公约数即可. #include <algorithm> #include <cmath& ...

  3. NOIP模拟赛 by hzwer

    2015年10月04日NOIP模拟赛 by hzwer    (这是小奇=> 小奇挖矿2(mining) [题目背景] 小奇飞船的钻头开启了无限耐久+精准采集模式!这次它要将原矿运到泛光之源的矿 ...

  4. 大家AK杯 灰天飞雁NOIP模拟赛题解/数据/标程

    数据 http://files.cnblogs.com/htfy/data.zip 简要题解 桌球碰撞 纯模拟,注意一开始就在袋口和v=0的情况.v和坐标可以是小数.为保险起见最好用extended/ ...

  5. 队爷的讲学计划 CH Round #59 - OrzCC杯NOIP模拟赛day1

    题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的讲学计划 题解:刚开始理解题意理解了好半天,然后发 ...

  6. 队爷的Au Plan CH Round #59 - OrzCC杯NOIP模拟赛day1

    题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的Au%20Plan 题解:看了题之后觉得肯定是DP ...

  7. 队爷的新书 CH Round #59 - OrzCC杯NOIP模拟赛day1

    题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的新书 题解:看到这题就想到了 poetize 的封 ...

  8. CH Round #58 - OrzCC杯noip模拟赛day2

    A:颜色问题 题目:http://ch.ezoj.tk/contest/CH%20Round%20%2358%20-%20OrzCC杯noip模拟赛day2/颜色问题 题解:算一下每个仆人到它的目的地 ...

  9. CH Round #52 - Thinking Bear #1 (NOIP模拟赛)

    A.拆地毯 题目:http://www.contesthunter.org/contest/CH%20Round%20%2352%20-%20Thinking%20Bear%20%231%20(NOI ...

随机推荐

  1. SCUT - 289 - 小O的数字 - 数位dp

    https://scut.online/p/289 一个水到飞起的模板数位dp. #include<bits/stdc++.h> using namespace std; typedef ...

  2. Python中的矩阵、多维数组:Numpy

    Numpy 是Python中科学计算的核心库.它提供一个高性能多维数据对象,以及操作这个对象的工具.部分功能如下: ndarray, 具有矢量算术运算和复杂广播能力的快速且节省空间的多维数组. 用于对 ...

  3. CodeForces - 906D Power Tower(欧拉降幂定理)

    Power Tower CodeForces - 906D 题目大意:有N个数字,然后给你q个区间,要你求每一个区间中所有的数字从左到右依次垒起来的次方的幂对m取模之后的数字是多少. 用到一个新知识, ...

  4. 清北刷题冲刺 11-02 p.m

    函数最值 #include<iostream> #include<cstdio> #include<cstring> #define maxn 100010 usi ...

  5. iPhone摄影中的深度捕捉(WWDC2017-Session 507)

    507是深度媒体相关的概念层面的内容.主要为下面4个部分: Depth and disparity on iPhone 7 Plus Streaming depth data from the cam ...

  6. c#之 quartz的学习

    目录: 一. Quartz的API 二.Trigger 的使用 三.使用 JobDataMap 来往Job中传值 四. Calendars 五.SimpleTrigger 六.CronTrigger ...

  7. Python中list的复制及深拷贝与浅拷贝探究

    在Python中,经常要对一个list进行复制.对于复制,自然的就有深拷贝与浅拷贝问题.深拷贝与浅拷贝的区别在于,当从原本的list复制出新的list之后,修改其中的任意一个是否会对另一个造成影响,即 ...

  8. JavaScript for impatient programmers

    参考 作者发布的在线HTML版本(包含大部分主要章节,只缺少四个额外章节)——https://exploringjs.com/impatient-js/toc.html 作者的博客——http://2 ...

  9. 使用JMeter进行API功能测试

    使用JMeter进行API功能测试 Apache JMeter是一种流行的开源软件,用于性能测试. 在本博客中,我们将阐明如何使用JMeter for REST API自动化进行功能测试. 我们使用了 ...

  10. HDU6438:Buy and Resell(贪心+数据结构)

    题意 : 给出一些数.你可以从左到右对这些数进行三种操作花费 Ai 买入东西.以 Ai 价格卖出你当前有的东西.或者什么都不做.现在问你可以获取的最大利益是多少 分析:对每一个元素产生的贡献可以先计算 ...