CF补题:CodeTON Round 5 (Div. 1 + Div. 2, Rated, Prizes!)(B,C)
1.CF1842B
注意:只能一个一个拿,前面的不拿后面也拿不了(后面都不要了)
#include<iostream>
#include<vector>
#include<algorithm>
#include<set>
#include<cmath>
#include<numeric>
using namespace std;
#define endl '\n'
#define ll long long
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define pii pair<int,int>
void func()
{
int n, x;
cin >> n >> x;
int y = 0;
for (int i = 0; i < 3; i++)
{
bool k = 1;
for (int j = 0; j < n; j++)
{
int tt;
cin >> tt;
if ((x | tt) != x)//若头个不能得到,则k=0,后面的都不要了
k = 0;
if(k==1)
y |= tt;
}
}
if (y == x)
cout << "Yes" << endl;
else
cout << "No" << endl;
}
int main()
{
cin.tie(0), cout.tie(0)->sync_with_stdio(false);
int t;
cin >> t;
while (t--)
{
func();
}
return 0;
}
2.CF1842C
思路:value[i]表示数字为i的前面(不包括自己)的数的数目,初始为正无穷。
f[i]表示走到第i个数的所留下来的数的数目,答案为总的减去留下来的即是移走的。
重点:f[i]=min(f[i-1]+1,value[a[i]])--->若遇到相同数字,f左移。
value[a[i]]=min(f[i-1],value[a[i]])--->若遇到相同数字,去掉两个相同数字中间的数字,左移。
注意:a数组所包含的数在1到n之间。
#include<iostream>
#include<vector>
#include<algorithm>
#include<set>
#include<cmath>
#include<numeric>
using namespace std;
#define endl '\n'
#define ll long long
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define pii pair<int,int>
const int N = 2e5 + 100;
void func()
{
int n;
cin >> n;
vector<int>a(n+1,0);
vector<int>value(n+1,0);
vector<int>f(n+1,0);
for (int i = 1; i <= n; i++)
{
cin >> a[i];
value[i] = 0x3f3f3f3f;
}
for (int i = 1; i <= n; i++)
{
f[i] = min(f[i - 1] + 1, value[a[i]]);
value[a[i]] = min(f[i - 1], value[a[i]]);
}
cout << n - f[n] << endl;
}
int main()
{
cin.tie(0), cout.tie(0)->sync_with_stdio(false);
int t;
cin >> t;
while (t--)
{
func();
}
return 0;
}