2018 icpc 青岛现场赛(训练用) 嘴炮记录

C - Flippy Sequence

 水题

#include
using namespace std;
int a[10000000];
bool c[10000000];
int main()
{
    int T;
    scanf("%d",&T);
    int n;
    int cnt;
    long long l;
    while(T--)
    {
        scanf("%d\n",&n);
        cnt=0;
        l=1;
        for(int i=0;i2)cout<<"0\n";
        }
    }
    return 0;
}

E - Plants vs. Zombies

 二分答案+贪心构造

#include
using namespace std;
const int maxn = 1e5+10;
long long a[maxn], h[maxn], n, m, mx;

void read_ll(long long &x){
    char c=getchar();
    x=0;
    while(c==' '||c=='\n'||c=='\r'){
        c=getchar();
    }
    while(c!=' '&&c!='\n'&&c!='\r'){
        x=x*10+c-'0';
        c=getchar();
    }
    return ;
}

void read(){
    mx=0;
    read_ll(n);    read_ll(m);
    for (long long i=1;i<=n;++i){
        read_ll(a[i]);
        mx=max(mx,a[i]);
    }
    a[n+1]=0;
    return ;
}

inline bool pj(long long x){
    long long res=m, cost;
    long long temp, nex;
    nex=0;
    for (int i=0;i<=n;++i){
        temp=nex;   nex=x;
        if (res<0){
            return false;
        }
        if (temp<=0){
            if (i==n){
                break;
            }
            nex-=a[i+1];
            res--;
            continue;
        }
        cost = temp/a[i];
        if (temp%a[i]!=0){
            cost++;
        }
        res-=cost;
        res-=cost;
        nex-=cost*a[i+1];
        if (i+1>=n){
            if (i+1==n){
                if (nex<=0){
                    if (res>=0){
                        return true;
                    }else{
                        return false;
                    }
                }else{
                    res--;
                    nex-=a[i+1];
                    continue;
                }
            }else{
                if (res>=0){
                    return true;
                }else{
                    return false;
                }
            }
        }else{
            res--;
            nex-=a[i+1];
        }
        if(res<0){
            return false;
        }
    }
    return true;
}

void sol(){
    long long l,r,mid,ans=0;
    l=0;r=mx*m;
    if (m>1;
        if (l+1==r)
            break;
        if(pj(mid))
        {
            l=mid;
        }else{
            r=mid;
        }
    }
    printf("%lld\n",l);
    return ;
}

int main(){
    int T;
    scanf("%d",&T);
    while(T--){
        read();
        sol();
    }
    return 0;
}

F - Tournament

 构造题,最晚开的,因为时候不早了(要被看楼大爷赶人了)就先嘴炮了

因为如果1和2打了,3和4打了,那么如果1和3打必须2和4打!(很重要的前提条件)

那就抱团啊,首先抱2人团,互打,打完这个团就和这个团抱起来挑下一个团。

最少次数即为最小的那个团所能打的次数。

 

J - Books

 

#include
#include
#define ll long long
using namespace std;
const int maxn = 1e5 +50;
ll a[maxn];
int cnt = 0;
int main(){
	int T;
	scanf("%d",&T);
	while(T--){
		int n,m;scanf("%d%d",&n,&m);
		cnt = 0;
		int num = 0;
		for(int i=0;i a[i]) m = a[i];
			}
			printf("%lld\n",ans + m - 1);
		}
	}
}

M - Function and Function

 

#include
#include
#define ll long long
using namespace std;
int c[10] = {1,0,0,0,1,0,1,0,2,1};
int g(int x,int k){
	if(x==0){
		return k&1;
	}
	else if(k==0) return x;
	int t = 0;
	while(x){
		t+=c[x%10];
		x/=10;
	}
	return g(t,k-1);
}
int main(){
	int T;
	cin>>T;
	while(T--){
		int x,k;
		scanf("%d%d",&x,&k);
		int ans = 0;ans = g(x,k);
		printf("%d\n",ans);
	}
}

 

你可能感兴趣的:(记录)