Acwing第 54 场周赛题解

Acwing第 54 场周赛题解

AcWing 4428. 字符串

原题链接

算法标签

枚举 哈希表

代码

#include<bits/stdc++.h>
#define int long long
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>b;--i)
using namespace std;
const int N = 10005;
int aa[30];
inline int read(){
   int s=0,w=1;
   char ch=getchar();
   while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
   while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
   return s*w;
}
void put(int x) {
    if(x<0) putchar('-'),x=-x;
    if(x>=10) put(x/10);
    putchar(x%10^48);
}
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int n=read();
	char s[105];
	scanf("%s", s);
	rep(i, 0, n){
	    aa[tolower(s[i])-'a']++;
	}
	int flag=false;
	rep(i, 0, 26){
	    if(!aa[i]){
	       flag=true;
	       break;
	    }
	}
	if(flag){
	    puts("NO");
	}
	else{
	    puts("YES");
	}
	return 0;
}

AcWing 4429. 无线网络

原题链接

思路

设dis1为当前点据wifi基站1距离 dis2为当前点据wifi基站2距离
将所有点对于把其中一个基站根据从大到小枚举,保证每次只需处理该点到另一个基站距离。 用该点更新最大距离即可。

算法标签

枚举 排序

代码

#include<bits/stdc++.h>
#define int long long
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>b;--i)
#define x first
#define y second
using namespace std;
typedef pair<int, int> PII;
const int N = 10005;
PII q[N];
int n, x1, y1, x2, y2;
inline int read(){
   int s=0,w=1;
   char ch=getchar();
   while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
   while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
   return s*w;
}
void put(int x) {
    if(x<0) putchar('-'),x=-x;
    if(x>=10) put(x/10);
    putchar(x%10^48);
}
bool cmp(PII a, PII b){
    return (a.x-x1)*(a.x-x1)+(a.y-y1)*(a.y-y1)<(b.x-x1)*(b.x-x1)+(b.y-y1)*(b.y-y1);
}
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	n=read(),x1=read(),y1=read(),x2=read(),y2=read();
	int res=1e18, r=0;
	rep(i, 0, n){
	    q[i].x=read(), q[i].y=read();
	}
	// 从大到小枚举 保证每次只需处理别另一个基站覆盖的点只多余一个, 用该点更新最大距离
	sort(q, q+n, cmp);
	Rep(i,n-1,-1){
	    res=min(res, (q[i].x-x1)*(q[i].x-x1)+(q[i].y-y1)*(q[i].y-y1)+r);
	    r=max(r, (q[i].x-x2)*(q[i].x-x2)+(q[i].y-y2)*(q[i].y-y2));
	}
	res=min(res, r);
	put(r);
	return 0;
}
WA代码
#include<bits/stdc++.h>
#define int long long
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>b;--i)
using namespace std;
const int N = 10005;
int aa[30];
inline int read(){
   int s=0,w=1;
   char ch=getchar();
   while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
   while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
   return s*w;
}
void put(int x) {
    if(x<0) putchar('-'),x=-x;
    if(x>=10) put(x/10);
    putchar(x%10^48);
}
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int n=read(),x1=read(),y1=read(),x2=read(),y2=read();
	int mx1=0, mx2=0;
	while(n--){
	    int a=read(),b=read();
	    int dis1=abs(a-x1)*abs(a-x1)+abs(b-y1)*abs(b-y1);
	    int dis2=abs(a-x2)*abs(a-x2)+abs(b-y2)*abs(b-y2);
	    if(dis1>dis2){
	        if(dis2>mx2){
	            mx2=dis2;
	        }    
	    }
	    else{
	        if(dis1>mx1){
	            mx1=dis1;
	        }
	    }
	}
	put(mx1+mx2);
	return 0;
}
WA原因

错误原因 :若dis1>dis2,若r1此时较大,只需使r1稍增大便可。若直接选择r2,则有可能需增大更多。

AcWing 4430. 括号序列

原题链接

思路

l l l 左括号数量为
r r r 右括号数量为
c n t cnt cnt左括号数量 − - 右括号数量
由题意,只有 l = r + 2 l=r+2 l=r+2 r = l + 2 r=l+2 r=l+2时,存在满足条件的位置其他情况不存在, 数量为0。
满足条件的位置数量为当序列不合法时, 即需要改动才能使序列合法时, 选择一个之前右括号改变为左括号 ,判断后续括号序列是否合法。若合法, 结果即为当前右括号数量,否则, 结果为零。

算法标签

括号序列 思维题

代码

#include<bits/stdc++.h>
#define int long long
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>b;--i)
#define x first
#define y second
using namespace std;
typedef pair<int, int> PII;
const int N = 1000005;
int n;
char s[N];
inline int read(){
   int s=0,w=1;
   char ch=getchar();
   while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
   while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
   return s*w;
}
void put(int x) {
    if(x<0) putchar('-'),x=-x;
    if(x>=10) put(x/10);
    putchar(x%10^48);
}
int work(){

    int cnt=0, r=0;
    rep(i, 0, n)
        if(s[i]=='('){
            cnt++;
        }
        else{
            cnt--;
            r++;
            if (cnt<0){
                // 选择一个之前右括号改变为左括号 
                cnt+=2;
                // 判断后续括号序列是否合法
                rep(j, i+1, n)
                    if(s[j]=='(') cnt ++ ;
                    else{
                        cnt--;
                        if(cnt<0) return 0;
                    }
                return r;
            }
        }
    return 0;
}
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	n=read();
	scanf("%s", s);
	int l=0, r=0;
	rep(i, 0, n){
	    if(s[i]=='('){
	        l++;
	    }
	    else{
	        r++;
	    }
	}
	if(r==l+2){
	    put(work());
	}
	else if(l==r+2){
	    reverse(s, s+n);
	    rep(i, 0, n){
	        if(s[i]=='('){
	            s[i]=')';
	        }
	        else{
	            s[i]='(';
	        }
	    }
	    put(work());
	}
	else{
	    put(0);
	}
	return 0;
}

原创不易
转载请标明出处
如果对你有所帮助 别忘啦点赞支持哈
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

飞滕人生TYF

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

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

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

打赏作者

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

抵扣说明:

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

余额充值