发布时间:2024-03-10 08:01
Dashboard - Codeforces Round #804 (Div. 2) - CodeforcesCodeforces. Programming competitions and contests, programming communityhttps://codeforces.com/contest/1699
Problem - A - Codeforceshttps://codeforces.com/contest/1699/problem/A
题意:给你一个x,问是否存在:(a⊕b)+(b⊕c)+(a⊕c)=n.
思路,根据异或的性质,构造a=n/2,b=n/2,c=0.(奇数不行)
Problem - B - Codeforceshttps://codeforces.com/contest/1699/problem/B
题意:给你n,m(都是偶数)构造出一个二维数组,让和某一个位置上相邻的四个位置上有两个值和原位置上的值不同.
思路:直接对着样例1构造:
#include
using namespace std;
void solve()
{
int n,m;
cin>>n>>m;
string s1="1",s2="0";
for(int i=0;i>t;
while(t--)
solve();
return 0;
}
Problem - C - Codeforceshttps://codeforces.com/contest/1699/problem/C
题意:给你一个数组(元素是0到n-1),问有多少种和它打乱顺序之后每个子数组的mex值相等的数组.
思路:数字x可以随意放置的区间,那么可以肯定的是前x-1个数字都已经安置了,那么剩下的位置都可以随便放置.那么我们记录每个数字的pos位置之后,进行数字的枚举,确认它已经安置的区间,例如枚举到了2,之前的区间的值是{2,1,4,5,7,0,3,6},那么对于益旌纺织的区间[2,6]除了0,1之外2还有3个位置可以放,然后对于这个更新区间,包含0,1,2的就是区间就是[1,6],那么下一个数字3可以放置的位置就是这个区间处理0,1,2的位置.再根据乘法原理求即可:
#include
#define int long long
using namespace std;
const int N =5e5+10,mod=1e9+7;
int pos[100005];
void solve()
{
int n,x,res=1;
scanf("%lld",&n);
int l=1e6,r=-1e6;
for(int i=0;i>t;
while(t--)
solve();
return 0;
}
奋斗力努