• uoj#283. 直径拆除鸡(构造)


    传送门

    好神的构造题

    vfk巨巨的题解

    //minamoto
    #include<bits/stdc++.h>
    #define R register
    #define fp(i,a,b) for(R int i=a,I=b+1;i<I;++i)
    #define fd(i,a,b) for(R int i=a,I=b-1;i>I;--i)
    #define go(u) for(int i=head[u],v=e[i].v;i;i=e[i].nx,v=e[i].v)
    using namespace std;
    char buf[1<<21],*p1=buf,*p2=buf;
    inline char getc(){return p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<21,stdin),p1==p2)?EOF:*p1++;}
    int read(){
        R int res,f=1;R char ch;
        while((ch=getc())>'9'||ch<'0')(ch=='-')&&(f=-1);
        for(res=ch-'0';(ch=getc())>='0'&&ch<='9';res=res*10+ch-'0');
        return res*f;
    }
    char sr[1<<21],z[20];int C=-1,Z=0;
    inline void Ot(){fwrite(sr,1,C+1,stdout),C=-1;}
    void print(R int x,R char ch){
        if(C>1<<20)Ot();if(x<0)sr[++C]='-',x=-x;
        while(z[++Z]=x%10+48,x/=10);
        while(sr[++C]=z[Z],--Z);sr[++C]=ch;
    }
    int n,m,now,tot,las,res,ans;
    int main(){
    //	freopen("testdata.in","r",stdin);
    	n=read(),m=read();
    	for(R int i=1;(i+1)*(i+1)<=n;++i){
    		now=0,tot=n;
    		fd(j,i,1)now+=tot,tot-=2*j+1;
    		now+=tot;if(now>ans)ans=now,res=i;
    	}tot=las=0;
    	fd(i,res,1){
    		fp(j,1,(i<<1))printf("%d %d
    ",tot+j,tot+j+1);
    		if(tot)printf("%d %d
    ",las,tot+i+1);
    		las=tot+i+1,tot+=(i<<1)+1;
    	}if(!res)las=tot=1;
    	while(tot<n)printf("%d %d
    ",las,++tot);
    	return 0;
    }
    
  • 相关阅读:
    Goldbach's Conjecture
    查找素数
    最大公约数和最小公倍数
    迭代求立方根
    计算两个矩阵的乘积
    随机选择算法
    有几个PAT
    python3学习笔记之安装
    Ubuntu 16.04卸载一些不必要的预装软件
    Xshell连接不上虚拟机提示ssh服务器拒绝了密码,请再试一次
  • 原文地址:https://www.cnblogs.com/bztMinamoto/p/10242423.html
Copyright © 2020-2023  润新知