蓝桥杯百校真题大联赛第4期(五)

A组

荒岛探测

字串排序

import java.util.Scanner;
public class Main {
	static int list[]={//存放后缀序列,这样插和删除很容易
		0,0,0,0,0,//注cccbba=1,2,3,0,……
		0,0,0,0,0,
		0,0,0,0,0,
		0,0,0,0,0,
		0,0,0,0,0,
		0
	};
	static int[] str=new int[300];//存放前缀序列
	static void reset() {//后缀序列清零
		int i=0;
		while(i<26&&list[i]!=0) {
			list[i]=0;
			++i;
		}
	}
	static int getrnum() {//计算逆序数(分三步)
		int cnt=0;
		for(int i=0;str[i]!=0;++i) {//前缀的逆序数
			for(int j=i;str[j]!=0;++j) {
				if(str[i]>str[j]) {
					++cnt;
				}
			}
		}
		for(int i=0;str[i]!=0;++i) {//前缀对后缀的逆序数
			for(int j=25;j>=0;--j) {
				if(str[i]-'a'>j) {
					cnt+=list[j];
				}
			}
		}
		int temp=0;
		for(int i=0;i<26;++i) {//后缀的逆序数
			cnt+=temp*list[i];
			temp+=list[i];
		}
		return cnt;
	}
	static int getinc(int c) {//获得最大逆序增量(特殊步骤中代替求逆序数函数用来提速)(可以认为在数字符串里有多少非c(传入的参数)字符)(也就是插入c逆序数能增加多少)
		int i=0,cnt=0;
		while(str[i]!=0) {
			if(str[i]>(c+'a')) {
				cnt++;
			}
			++i;
		}
		for(i=0;i<26;++i) {
			if(i!=c) {
				cnt+=list[i];
			}
		}
		return cnt;
	}
	static void set() {//在后部序列中插入元素,保证逆序数最大
		int max=0,temp=0,index=0;
		for(int i=0;i<26;++i) {
			list[i]++;
			if((temp=getinc(i))>max) {//找出使逆序数增得最快的字符插入(这里比用增而直接记录逆序数不影响结果,但慢一些,数据10000左右要5秒左右,会超时的,不然我也不会编这么个对于的函数。。)
				index=i;
				max=temp;
			}
			list[i]--;
		}
		list[index]++;
	}
	static void getMaxStr(int l) {//获取前缀确定且长度确定的前提下的最大逆序数字串
		reset();
		for(int i=0;str[i]!=0;++i,--l);
		while(l>0) {
			set();
			--l;
		}
	}
	static void printstr() {//打印目标字符串
		String Str="";
		int i=0;
		while(str[i]!=0) {
			Str+=(char)str[i];
			++i;
		}
		for(i=25;i>=0;--i) {//这里其实没用,既然不执行也不会影响效率,留着吧,后缀最后是空的,但曾经存在过。。。
			for(int j=0;j<list[i];++j) {
				Str+=(char)(i+'a');
			}
		}
		System.out.println(Str);
	}
	static void getans(int num,int l) {//l是字串长度
		for(int i=0;i<l;++i) {
			for(int j=0;j<26;++j) {//每个位从a开始试
				str[i]=j+'a';
				getMaxStr(l);//获取指定前缀最大逆字串
				if(getrnum()>=num) {//超了就下一个
					break;
				}
			}
		}
	}
	public static void main(String[] args){//这了很简洁了
		int num;
		Scanner sc = new Scanner(System.in);
		num=sc.nextInt();//获取输入
		sc.close();
		int l=0;
		while(getrnum()<num) {//获取最短字串长
			++l;
			getMaxStr(l);
		}
		getans(num,l);//获得目标字串
		printstr();//打印
	}
}


B组

双向排序

#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;
#define x first
#define y second

typedef pair<int, int> PII;

const int N = 100010;

int n, m;
PII stk[N];
int a[N];

int main()
{
    scanf("%d%d", &n, &m);
    int top = 0;
    while (m -- )
    {
        int p, q;
        scanf("%d%d", &p, &q);
        if (!p)
        {
            while (top && stk[top].x == 0) q = max(q, stk[top -- ].y);
            while (top >= 2 && stk[top - 1].y <= q) top -= 2;
            stk[ ++ top ] = {p, q};
        }
        else if (top)
        {
            while (top && stk[top].x == 1) q = min(q, stk[top -- ].y);
            while (top >= 2 && stk[top - 1].y >= q) top -= 2;
            stk[ ++ top ] = {p, q};
        }
    }
    
    int k = n, l = 1, r = n;
    for (int i = 1; i <= top; i ++ )
    {
        if (!stk[i].x)
        {
            while (r > stk[i].y && l <= r)
                a[r -- ] = k -- ;
        }
        else
        {
            while (l < stk[i].y && l <= r)
                a[l ++ ] = k -- ;
        }
        if (l > r) break;
    }
    
    if (top % 2)
        while (l <= r) a[l ++ ] = k -- ;
    else 
        while (l <= r) a[r -- ] = k -- ;
    
    for (int i = 1; i <= n; i ++ )
        cout << a[i] << ' ';
    return 0;
}

括号序列

#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;
const int N = 5010, MOD = 1e9 + 7;
typedef long long LL;

int n;
char s[N];
LL f[N][N];

LL work()
{
    memset(f, 0, sizeof f);
    f[0][0] = 1; // 不选择字符时,左括号比右括号多0, 
    // 这个时候不添加左括号也是一种方案方案数为1
    
    for (int i = 1; i <= n; i ++ )
    {
        if (s[i] == '(')
        {
            for (int j = 1; j <= n; j ++ )
                f[i][j] = f[i - 1][j - 1];
        }
        else
        {
            f[i][0] = (f[i - 1][1] + f[i - 1][0]) % MOD;
            for (int j = 1; j <= n; j ++ )
            {
                f[i][j] = (f[i - 1][j + 1] + f[i][j - 1]) % MOD;
            }
        }
    }
    
    for (int i = 0; i <= n; i ++ )
        if (f[n][i])
            return f[n][i];
    return -1;
}

int main()
{
    scanf("%s", s + 1);
    n = strlen(s + 1);
    
    LL l = work();
    reverse(s + 1, s + n + 1);
    for (int i = 1; i <= n; i ++ )
    {
        if (s[i] == '(') s[i] = ')';
        else s[i] = '(';
    }
    
    LL r = work();
    printf("%lld", (l * r) % MOD);
    return 0;
}

C组

小朋友崇拜圈

#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

const int N = 1e5 + 10;

int n;
int q[N];
bool st[N];
int res;

bool dfs(int start, int u, int step)
{
    st[u] = true;
    if (q[u] == start)
    {
        res = max(res, step + 1);
        return true;
    }

    if (!st[q[u]])
    {
        st[q[u]] = dfs(start, q[u], step + 1);
        if (st[q[u]]) return true;
    }

    return false;
}

int main()
{
    cin >> n;
    for (int i = 1; i <= n; i ++ ) cin >> q[i];

    for (int i = 1; i <= n; i ++ )
        if (!st[i]) dfs(i, i, 0);

    cout << res << endl;

    return 0;
}

耐摔指数

#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>

using namespace std;

const int N = 10010;

int n;
int f[4][N];

int main() {
    scanf("%d", &n);
    memset(f, 0x3f, sizeof(f));

    for (int i = 0; i <= n; i++)
        f[1][i] = i;

    for (int i = 2; i <= 3; i++) {
        f[i][0] = 0;
        for (int j = 1; j <= n; j++)
            for (int k = 1; k <= j; k++)
                f[i][j] = min(f[i][j], max(f[i - 1][k - 1], f[i][j - k]) + 1);
    }

    printf("%d\n", f[3][n]);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Shirandexiaowo

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值