上海理工大学天梯赛补题
作者:互联网
A题 题意
给你一个字符串,让你计算一下有多少对相邻的字母,
比如:a和b,b和c是两对相邻的字母,而a和c,a和z则不是。(注意:任意两个下标上的字母都可以成为相邻的对,例如:对于字符串“adfb”,下标为00的字符’a’ 与下标为33的字符’b’ 也是一对相邻的字母)
解题思路
我们只需要求出每一个字母出现的次数然后将每一对相邻字母的个数相乘然后相加即可。
#include<bits/stdc++.h>
using namespace std;
int n,lab[100];
char s[100010];
int main()
{
cin>>n;
for(int i=0;i<n;i++)
{
cin>>s[i];
}
for(int i=0;s[i] > 0;i++)
{
int t=s[i]-'a';
lab[t]++;
}
long long int ans=0;
for(int i=0;i<=24;i++)
{
ans=ans+lab[i]*lab[i+1];
}
cout<<ans << endl;
return 0;
}
B题 题意:
给你一个数n,表示火柴的最大长度,让你在1~n以内找出所有的3个数,使这三个数可以组成一个直角三角形,求出能够组成不同三角形的个数。
思路
由于给的范围1<=n<=10000,因此O(n*n)的复杂度还是可以飘过的,于是我们用一个map存储一下从1到n的所有数的平方,然后我们就枚举两条边,计算一下他们的平方和在不在map里面,如果在的话,我们就让结果加1,跑出来的就是结果。
代码
#include <bits/stdc++.h>
#include<unordered_map>
using namespace std;
const int maxn = 2e5 + 10;
int n,i,j;
long long a[maxn],x,y,ans, cnt = 0;
unordered_map<long long , long long> mp;
int main(){
cin >> n;
for(int i = 1; i <= n; i++)
mp[i*i]++;
for(int i = 1; i <= n; i++){
for(int j = i+1; j <= n; j++){
ans = i*i + j*j;
if(mp.count(ans)){
cnt++;
//cout << ans << endl;
}
}
}
cout << cnt << endl;
return 0;
}
C题 题解
链接:https://ac.nowcoder.com/acm/contest/14302/C
来源:牛客网
这是一道测试你是否智商在线的观察题。给定一个长度为n的正整数序列aa,请你在这nn个数里面找到一个“与众不同”的元素,并输出该元素的下标i(1<=i<=n)。
输入描述:
第一行输入一个正整数n,表示序列a的元素个数(3<=n<=1000)
第二行输入n个正整数ai,(1 <= ai <= 10100, 1 <= i <= n)
输出描述:
输出那个“与众不同”的数的下标(答案保证唯一性)
<输入样例1:
3
1 10 2
输出:
3
输入样例2:
5
23 56 32 131 41
输出:
2
我们可以看一下输入数据的大小,1 <= ai <= 10100,因此很容易发现,我们肯定需要用字符串输入,于是我们就写成字符串,找下规律,我们很快发现,我们要求的就是字符串里面所有字符的和在所有给出的字符串中只有一个的下标。
#include<iostream>
#include<algorithm>
#include<iomanip>
#include<cstring>
#include<stdio.h>
#include<iterator>
#include<string>
#include<vector>
#include<queue>
#include<stack>
#include<cmath>
#include<set>
#include<map>
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
typedef long long ll;
int n ;
string str;
set<int>num;
map<int,int>mp;
map<int,int>mi;
int main(){
cin>>n;
for(int i = 1;i<=n;++i){
cin>>str;
int ans = 0;
for(int j = 0;j<str.size();++j){
ans+=str[j] - '0';
}
mp[ans]++;
mi[ans] = i;
num.insert(ans);
}
for(set<int>::iterator it = num.begin();it != num.end();++it){
if(mp[*it] == 1){
cout<<mi[*it]<<endl;
break;
}
}
}
D题 题解
题意
让你分别前缀和与后缀和相同时且前缀和与后缀和取得的数不能有交集的前缀和最大值,直接用两个map存前缀和与后缀和对应的下标,然后用双指针即可。
#include <iostream>
#include<unordered_map>
#include<algorithm>
using namespace std;
typedef long long ll;
const int mxn = 2e5 + 5;
int a[mxn];
unordered_map<long long, long long> mp;
unordered_map<long long, long long> mp1;
bool ok[200010] = {false};
ll read(){
int x = 0, f = 1;
char ch = getchar();
while(ch < '0' || ch > '9'){
if(ch == '-') f = -1;
ch = getchar();
}
while(ch > '0' && ch <= '9'){
x = (x << 1) + (x << 3) + (ch ^ 48);
ch = getchar();
}
return x*f;
}
int main()
{
ll n, sum = 0; cin >> n;
for(int i = 1; i <= n; i++){
cin >> a[i];
sum += a[i];
mp[i] = sum;
}
sum = 0;
for(int i = n; i >= 1; i--){
sum += a[i];
mp1[i] = sum;
//cout << mp1[i] << endl;
}
ll i = 1, j = n, maxn = 0;
while(i < j){
if(mp[i] < mp1[j]) i++;
else if(mp[i] > mp1[j]) j--;
else{
maxn = max(mp[i], maxn);
i++;
j--;
}
}
cout << maxn << endl;
return 0;
}
E题 题解
标签:int,cin,long,上海理工大学,补题,天梯,ans,include,mp 来源: https://blog.csdn.net/weixin_46754239/article/details/115431329