C. Equal Sums的映射如何改写为长尾词?
- 内容介绍
- 文章标签
- 相关推荐
本文共计1242个文字,预计阅读时间需要5分钟。
给定k个整数序列。第i个序列的长度等于n+i。需要选择恰好两个序列i和j(i You are given You have to choose exactly two sequences Note that it’s required to remove exactly one element in each of the two chosen sequences. Assume that the sum of the empty (of the length equals Input Then The first line in the The elements of sequences are integer numbers from The sum of lengths of all given sequences don’t exceed Output Two chosen sequences must be distinct, i.e. If there are multiple possible answers, print any of them. Examples 给定k个数组;选其中两个使得它们删除其中一个数之后sum 相等;
k
sequences of integers. The length of the
i
-th sequence equals to
n
i
.
i
and
j
(
i
≠
j
) such that you can remove exactly one element in each of them in such a way that the sum of the changed sequence
i
(its length will be equal to
n
i
−
1
) equals to the sum of the changed sequence
j
(its length will be equal to
n
j
−
1
).
0
) sequence is
0
.
The first line contains an integer
k
(
2
≤
k
≤
2
⋅
10
5
) — the number of sequences.
k
pairs of lines follow, each pair containing a sequence.
i
-th pair contains one integer
n
i
(
1
≤
n
i
<
2
⋅
10
5
) — the length of the
i
-th sequence. The second line of the
i
-th pair contains a sequence of
n
i
integers
a
i
,
1
,
a
i
,
2
,
…
,
a
i
,
n
i
.
−
10
4
to
10
4
.
2
⋅
10
5
, i.e.
n
1
+
n
2
+
⋯
+
n
k
≤
2
⋅
10
5
.
If it is impossible to choose two sequences such that they satisfy given conditions, print “NO” (without quotes). Otherwise in the first line print “YES” (without quotes), in the second line — two integers
i
,
x
(
1
≤
i
≤
k
,
1
≤
x
≤
n
i
), in the third line — two integers
j
,
y
(
1
≤
j
≤
k
,
1
≤
y
≤
n
j
). It means that the sum of the elements of the
i
-th sequence without the element with index
x
equals to the sum of the elements of the
j
-th sequence without the element with index
y
.
i
≠
j
. You can print them in any order.
inputCopy
2
5
2 3 1 3 2
6
1 1 2 2 2 1
outputCopy
YES
2 6
1 2
inputCopy
3
1
5
5
1 1 1 1 1
2
2 3
outputCopy
NO
inputCopy
4
6
2 2 2 2 2 2
5
2 2 2 2 2
3
2 2 2
5
2 2 2 2 2
outputCopy
YES
2 2
4 1
Note
In the first example there are two sequences
[
2
,
3
,
1
,
3
,
2
]
and
[
1
,
1
,
2
,
2
,
2
,
1
]
. You can remove the second element from the first sequence to get
[
2
,
1
,
3
,
2
]
and you can remove the sixth element from the second sequence to get
[
1
,
1
,
2
,
2
,
2
]
. The sums of the both resulting sequences equal to
8
, i.e. the sums are equal.
那么用 map,和 pair 即可;
其中:
map#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<string>
#include<cmath>
#include<map>
#include<set>
#include<vector>
#include<queue>
#include<string>
#include<bitset>
typedef long long ll;
using namespace std;
typedef unsigned long long int ull;
#define maxn 200005
#define ms(x) memset(x,0,sizeof(x))
#define Inf 0x7fffffff
#define inf 0x3f3f3f3f
const long long int mod = 1e9 + 7;
#define pi acos(-1.0)
#define pii pair<int,int>
#define pll pair<ll,ll>
ll quickpow(ll a, ll b) {
ll ans = 1;
while (b > 0) {
if (b % 2)ans = ans * a;
b = b / 2;
a = a * a;
}
return ans;
}
int gcd(int a, int b) {
return b == 0 ? a : gcd(b, a%b);
}
map<ll, pll>mp;
int a[maxn];
int main()
{
ios::sync_with_stdio(false);
int n;
int k;
cin >> k;
int flag = 0;
for (int i = 1; i <= k; i++) {
int sum = 0;
cin >> n;
for (int j = 1; j <= n; j++) {
cin >> a[j];
sum += a[j];
}
for (int j = 1; j <= n; j++) {
if (mp.count(sum - a[j])&&!flag&&mp[sum-a[j]].first!=i) {
cout << "YES" << endl;
cout << mp[sum - a[j]].first << ' ' << mp[sum - a[j]].second << endl;
cout << i << ' ' << j << endl;
flag = 1;
}
}
for (int j = 1; j <= n; j++) {
mp[sum - a[j]] = { i,j };
}
}
if (!flag)cout << "NO" << endl;
}
本文共计1242个文字,预计阅读时间需要5分钟。
给定k个整数序列。第i个序列的长度等于n+i。需要选择恰好两个序列i和j(i You are given You have to choose exactly two sequences Note that it’s required to remove exactly one element in each of the two chosen sequences. Assume that the sum of the empty (of the length equals Input Then The first line in the The elements of sequences are integer numbers from The sum of lengths of all given sequences don’t exceed Output Two chosen sequences must be distinct, i.e. If there are multiple possible answers, print any of them. Examples 给定k个数组;选其中两个使得它们删除其中一个数之后sum 相等;
k
sequences of integers. The length of the
i
-th sequence equals to
n
i
.
i
and
j
(
i
≠
j
) such that you can remove exactly one element in each of them in such a way that the sum of the changed sequence
i
(its length will be equal to
n
i
−
1
) equals to the sum of the changed sequence
j
(its length will be equal to
n
j
−
1
).
0
) sequence is
0
.
The first line contains an integer
k
(
2
≤
k
≤
2
⋅
10
5
) — the number of sequences.
k
pairs of lines follow, each pair containing a sequence.
i
-th pair contains one integer
n
i
(
1
≤
n
i
<
2
⋅
10
5
) — the length of the
i
-th sequence. The second line of the
i
-th pair contains a sequence of
n
i
integers
a
i
,
1
,
a
i
,
2
,
…
,
a
i
,
n
i
.
−
10
4
to
10
4
.
2
⋅
10
5
, i.e.
n
1
+
n
2
+
⋯
+
n
k
≤
2
⋅
10
5
.
If it is impossible to choose two sequences such that they satisfy given conditions, print “NO” (without quotes). Otherwise in the first line print “YES” (without quotes), in the second line — two integers
i
,
x
(
1
≤
i
≤
k
,
1
≤
x
≤
n
i
), in the third line — two integers
j
,
y
(
1
≤
j
≤
k
,
1
≤
y
≤
n
j
). It means that the sum of the elements of the
i
-th sequence without the element with index
x
equals to the sum of the elements of the
j
-th sequence without the element with index
y
.
i
≠
j
. You can print them in any order.
inputCopy
2
5
2 3 1 3 2
6
1 1 2 2 2 1
outputCopy
YES
2 6
1 2
inputCopy
3
1
5
5
1 1 1 1 1
2
2 3
outputCopy
NO
inputCopy
4
6
2 2 2 2 2 2
5
2 2 2 2 2
3
2 2 2
5
2 2 2 2 2
outputCopy
YES
2 2
4 1
Note
In the first example there are two sequences
[
2
,
3
,
1
,
3
,
2
]
and
[
1
,
1
,
2
,
2
,
2
,
1
]
. You can remove the second element from the first sequence to get
[
2
,
1
,
3
,
2
]
and you can remove the sixth element from the second sequence to get
[
1
,
1
,
2
,
2
,
2
]
. The sums of the both resulting sequences equal to
8
, i.e. the sums are equal.
那么用 map,和 pair 即可;
其中:
map#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<string>
#include<cmath>
#include<map>
#include<set>
#include<vector>
#include<queue>
#include<string>
#include<bitset>
typedef long long ll;
using namespace std;
typedef unsigned long long int ull;
#define maxn 200005
#define ms(x) memset(x,0,sizeof(x))
#define Inf 0x7fffffff
#define inf 0x3f3f3f3f
const long long int mod = 1e9 + 7;
#define pi acos(-1.0)
#define pii pair<int,int>
#define pll pair<ll,ll>
ll quickpow(ll a, ll b) {
ll ans = 1;
while (b > 0) {
if (b % 2)ans = ans * a;
b = b / 2;
a = a * a;
}
return ans;
}
int gcd(int a, int b) {
return b == 0 ? a : gcd(b, a%b);
}
map<ll, pll>mp;
int a[maxn];
int main()
{
ios::sync_with_stdio(false);
int n;
int k;
cin >> k;
int flag = 0;
for (int i = 1; i <= k; i++) {
int sum = 0;
cin >> n;
for (int j = 1; j <= n; j++) {
cin >> a[j];
sum += a[j];
}
for (int j = 1; j <= n; j++) {
if (mp.count(sum - a[j])&&!flag&&mp[sum-a[j]].first!=i) {
cout << "YES" << endl;
cout << mp[sum - a[j]].first << ' ' << mp[sum - a[j]].second << endl;
cout << i << ' ' << j << endl;
flag = 1;
}
}
for (int j = 1; j <= n; j++) {
mp[sum - a[j]] = { i,j };
}
}
if (!flag)cout << "NO" << endl;
}

