弱校联盟10.3

Problem A。 Best Matched Pair

找出最大的每一位递增1的一对乘积,$n^2$枚举

#include<bits/stdc++.h>
using namespace std;
int n,a[2000],ans=-1;
bool ck(int a){
    int b=-1;
    while(a){
        int t=a%10;//23456
        a/=10;
        if(b!=-1&&t!=b-1)return 0;
        b=t;
    }
    return 1;
}
int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
            scanf("%d",&a[i]);
    for(int i=1;i<=n;i++)
        for(int j=i+1;j<=n;j++)
            if(ck(a[i]*a[j]))
                ans=max(ans,a[i]*a[j]);
    printf("%d",ans);
}

Problem B。 Help the Princess!

公主能否逃到出口且不被士兵们赶上。

从出口bfs,如果出口离公主比离任意一个士兵近,则可以逃出。

#include<bits/stdc++.h>
#define N 205
using namespace std;
int n,m;
char mp[N][N];
int dx[6]={0,0,1,-1};
int dy[6]={1,-1,0,0};
int sod=-1,pri;
int vis[N][N];
struct node{int x,y,d;}q[50000];
void bfs(){
    int l=0,r=0;
    while(l<=r){
        node k=q[l++];
        if(mp[k.x][k.y]==‘$‘ && sod==-1) sod=k.d;
        if(mp[k.x][k.y]==‘@‘) pri=k.d;
        for(int i=0;i<4;i++)
        {
            node p=(node){k.x+dx[i],k.y+dy[i],k.d+1};
            if(p.x>=0 && p.x<n && p.y>=0 && p.y<m){
                if(mp[p.x][p.y]!=‘#‘ && !vis[p.x][p.y]) {
                    q[++r]=p;
                    vis[p.x][p.y]=1;
                }
            }
        }
    }
}
int main(){
    scanf("%d%d ",&n,&m);

    for(int i=0;i<n;i++){
        char s[1000];
        cin.getline(s,1000);
        for(int j=0;s[j];j++){
            mp[i][j]=s[j];
            if(s[j]==‘%‘)q[0]=(node){i,j,0},vis[i][j]=1;
        }
    }
    bfs();
    if(sod!=-1 && sod<=pri)puts("No");
    else puts("Yes");
}

Problem D。 Parentheses

问你需要交换t次即可匹配正确的长度最小、字典序最小的括号序列。

n对括号最多需要1+2+..+n次交换,当它是)))..(((的形式时,)))(((需要6次,然后把中间两个交换一下,))()((就还需要5次,再交换一次靠近左边的)(,变成了)())((就需要4次,而3次,只要2对括号。

t次交换,先找出需要多少对括号,然后先给它)))...(((的形式,然后交换s-(p-t)(比如5次交换,就是3-(6-5)=2)和s.

#include<bits/stdc++.h>
#define N 1000000
using namespace std;
int t,s,p;
char a[N];
int main(){
	scanf("%d",&t);
	for(s=1;p<t;s++)p+=s;
	s--;
	for(int i=0;i<s;i++)a[i]=‘)‘,a[i+s]=‘(‘;
	swap(a[s],a[t-p+s]);
	printf("%s",a);
}

  

时间: 2024-11-02 15:21:50

弱校联盟10.3的相关文章

弱校联盟10.7 I. Special Squares(二维前缀和)

题目链接: I. Special Squares There are some points and lines parellel to x-axis or y-axis on the plane. If arbitrary chosen two lines parallel to x-axis and two lines parallel to y-axis, one rectangle, or sometimes a square, will be formed. If a square i

(2016弱校联盟十一专场10.3) A.Best Matched Pair

题目链接 #include<cstdio> #include<cstring> #include<algorithm> #include<stack> using namespace std; int n,data[1005]; int cal(int x) { int tx=x; int pre=-1; while(tx) { if(pre!=-1&&tx%10-pre!=-1) return -1; pre = tx%10; tx/=10

2016弱校联盟十一专场10.3---Similarity of Subtrees(深搜+hash、映射)

题目链接 https://acm.bnu.edu.cn/v3/problem_show.php?pid=52310 problem description Define the depth of a node in a rooted tree by applying the following rules recursively: • The depth of a root node is 0. • The depths of child nodes whose parents are with

2016弱校联盟十一专场10.2---Around the World(深搜+组合数、逆元)

题目链接 https://acm.bnu.edu.cn/v3/problem_show.php?pid=52305 problem  description In ICPCCamp, there are n cities and (n−1) (bidirectional) roads between cities. The i-th road is between the ai-th and bi-th cities. It is guaranteed that cities are conne

2016弱校联盟十一专场10.2——Around the World

题目链接:Around the World 题意: 给你n个点,有n-1条边,现在这n-1条边又多增加了ci*2-1条边,问你有多少条欧拉回路 题解: 套用best定理 Best Theorem:有向图中以 i 为起点的欧拉回路个数为以 i 为根的树形图个数 ×(( 每个点 度数 −1)!). Matrix Tree Theorem:以 i 为根的树形图个数 = 基尔霍夫矩阵去掉第 i 行第 i 列的行列 式. 从某个点 i 出发并回到 i 的欧拉回路个数 = 以 i 为起点的欧拉回路个数 ×i

2016弱校联盟十一专场10.2部分题解

1/10 J. Matrix Transformation 1 /*zhen hao*/ 2 #include <bits/stdc++.h> 3 using namespace std; 4 5 #define lson l, m, rt*2 6 #define rson m + 1, r, rt*2+1 7 #define xx first 8 #define yy second 9 10 typedef long long LL; 11 typedef unsigned long lon

2016弱校联盟十一专场10.2——Floyd-Warshall

题目链接:Floyd-Warshall 题意: 给你n个点,m条边,100>m-n>0,现在有q个询问,问你任意两点的最短距离,题目保证每条边都被连接,每条边的距离为1 题解: 首先我们可以看到边最多只比点多100个,那么我们可以先将n-1条边生成一棵树,然后用LCA来求最短距离. 然而有可能最短路在多余的这100条边上,所以我们将这100条边的两个端点到所有点的最短路用bfs预处理出来, 然后再用来更新一下答案就行. 1 #include<cstdio> 2 #include&l

(2016弱校联盟十一专场10.3) B.Help the Princess!

题目链接 宽搜一下就行. #include <iostream> #include<cstdio> #include<cstring> #include<queue> using namespace std; int n,m; char str[209][209]; int to[4][2]={1,0,-1,0,0,1,0,-1}; bool mp[209][209]; bool check(int x,int y) { if(x<0||x>=n

(2016弱校联盟十一专场10.3) D Parentheses

题目链接 把左括号看成A右括号看成B,推一下就行了.好久之前写的,推到最后发现是一个有规律的序列. #include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { ll n; while(scanf("%lld",&n)!=EOF) { ll cnt=0,sum=0; for(int i=1;; i++) { if(sum>=n) break; cnt++; su