Acwing第 9 场周赛未完结
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Acwing第 9 场周赛未完结相关的知识,希望对你有一定的参考价值。
3778. 平衡数组 【难度: 简单 / 知识点: 思维】
给一个数不加,给其他数都加,相当于给这个数减一个数,其它数都不加。
故顺序输出即可,结果会都变为0.
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int t; cin>>t;
while(t--)
{
int n; cin>>n;
cout<<n<<endl;
for(int i=1;i<=n;i++) cout<<i<<" ";
cout<<endl;
}
return 0;
}
3779. 相等的和 【难度: 一般 / 知识点: 哈希表】
哈希表保存每一个值所对应的组和该组删除的位置
#include<bits/stdc++.h>
using namespace std;
const int N=1e5*2+10;
int a[N];
int n,m;
int main(void)
{
cin>>m;
map<int,pair<int,int> >mp;
for(int i=1;i<=m;i++)
{
cin>>n;
int sum=0;
for(int j=1;j<=n;j++) cin>>a[j],sum+=a[j];
for(int j=1;j<=n;j++)
{
int t=sum-a[j];
if(mp.count(t)&&mp[t].first!=i)
{
puts("YES");
cout<<mp[t].first<<" "<<mp[t].second<<endl;
cout<<i<<" "<<j<<endl;
return 0;
}
mp[t]={i,j};
}
}
puts("NO");
return 0;
}
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> PII;
int a[250000],k;
map<int,int>mp;
struct node
{
int x,y;
};
map<int,vector<PII> > hush;
int main()
{
cin>>k;
for(int j=0;j<k;j++)
{
int l; cin>>l;
int sum=0;
for(int i=0;i<l;i++) cin>>a[i],sum+=a[i];
for(int i=0;i<l;i++) mp[sum-a[i]]++,hush[sum-a[i]].push_back({j+1,i+1});
}
for(auto t=mp.begin();t!=mp.end();t++)
{
int temp=t->second;
int x=t->first;
if(temp>=2)
{
for(int i=0;i<hush[x].size();i++)
{
for(int j=i+1;j<hush[x].size();j++)
{
if(hush[x][i].first!=hush[x][j].first)
{
cout<<"YES"<<endl;
cout<<hush[x][i].first<<" "<<hush[x][i].second<<endl;
cout<<hush[x][j].first<<" "<<hush[x][j].second<<endl;
return 0;
}
}
}
}
}
cout<<"NO"<<endl;
return 0;
}
以上是关于Acwing第 9 场周赛未完结的主要内容,如果未能解决你的问题,请参考以下文章