Educational Codeforces Round 157 (Rated for Div. 2)
A - Treasure Chest
一般规律
using namespace std;
#define int long long
const int N=2e6+5;
void solve(){
int x,y,k;
cin >> x >> y >> k;
cout << ((x > y) ? x :(((y - x) <= k) ? y : (y-x+y-k)));
cout << endl;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t=1;
cin>>t;
while(t--)solve();
}
B - Points and Minimum Distance
其实就是分成三个+和三个-的,排序后后一项减前一项,前n项当x后n项当y,注意不要y-x即可
using namespace std;
#define int long long
const int N=2e6+5;
const int NN=1010;
int a[N];
void solve(){
cin>>n;
for(int i=0;i<2*n;i++)cin>>a[i];
sort(a,a+2*n);
int ans=0;
for(int i=1;i<n;i++)ans+=a[i]-a[i-1];
for(int i=n+1;i<2*n;i++)ans+=a[i]-a[i-1];
cout<<ans<<endl;
for(int i=0;i<n;i++)
cout<<a[i]<<' '<<a[n+i]<<endl;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t=1;
cin>>t;
while(t--)solve();
}
C - Torn Lucky Ticket
如果使用暴力,那么复杂度10nn
解决这种求多少对的问题,一般是寻找字符串的共同点然后把他用共同点代替
我们只保存一个字符串的长度和和即可,和即为他的贡献度
i,j和j,i会作为两种不同的对被计算,去重
using namespace std;
#define int long long
const int N=2e6+5;
const int NN=1010;
int a[NN][NN];
void solve(){
int n;cin >> n;
vector<string>s(n);
map<pair<int,int>,int> m;
for(int i=0;i<n;i++)
{
cin >> s[i];
int all=0;
for(int j=0;j<s[i].size();j++)all+=s[i][j]-'0';
m[{s[i].size(),all}]++;
}
int ans=0;
for(int i=0;i<n;i++){
int len=s[i].size();
int all=0;
for(int j=0;j<len;j++)all += s[i][j]-'0';
int f = 0;
int cnt = 0;
int cntt = 0;
for(int j=0;j<len;j++){
f++;
cnt += s[i][j]-'0';//正着来
cntt += s[i][len-j-1]-'0';//反着来
int ff=len-f;
//cout<<-all+2*cnt<<' ';
int x=cnt-all+cnt;
int y=cntt-all+cntt;
ans+=m[{f-ff,cnt-all+cnt}];
//cout<<'-'<<m[{f-ff,x}]<<' '<<ans;
if(!(j==len-1))//为了避免出现把(1,2)(2,1)重复计数的情况,当长度等于len时,反着来的部分就不要了
ans+=m[{f-ff,y}];
}
}
}
cout<<ans<<endl;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t=1;
//cin>>t;
while(t--)solve();
}
D - XOR Construction
异或,从二进制入手,寻找性质
发现只要确定b1,那么b就能全部确定
b1 ^ b2=a1,b2 ^ a2=b3,b1 ^ b3=a1 ^ a2
在0-n-1的情况下,我们可以计算出每个位置的1的出现的次数
假如在i位置1出现x次,那么异或后1就会出现n-x次,答案只有两种情况,其中一种一定是正确的
枚举我们想要的x的每一位就好
using namespace std;
#define int long long
const int N=2e6+5;
void solve(){
int n;cin >> n;
vector<int>v(n-1);
for(int i=0;i<n-1;i++)cin >> v[i];
for(int i=1;i<n-1;i++)v[i] ^= v[i-1];//预处理
int x=0;
for(int i=0;i<20;i++)
{
int a[2]{},b[2]{};//初始化都为0
for(int j=0;j<n;j++)
{
a[j >> i & 1] +=1;//取j的第i位
}
for(int j=0;j<n-1;j++)
{
b[v[j] >> i & 1] +=1;
}
if(a[1]!=b[1]) x |= 1 << i;异或x的第i位
}
cout << x << ' ';
for(int i=0;i<n-1;i++)cout << (v[i]^x) << ' ';
cout << "\n";
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t=1;
//cin>>t;
while(t--)solve();
}