码迷,mamicode.com
首页 > 其他好文 > 详细

【洛谷八连测R5】whzzt-Confidence

时间:2017-10-28 23:13:36      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:bsp   pen   输入输出格式   http   说明   open   lld   代码   print   

题目描述

题目难度不一定按照题目顺序递增

请注意本题的空间限制为2333-2500KB!(前三个测试点的空间限制为2500KB)

给定两个长度相同的序列,这两个序列至多有 1 处不同。你的任务是找出这处不同。

输入输出格式

技术分享

说明

技术分享

代码

标程

技术分享
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
const int mo=998244353;
template<class T>
inline void read(T &x){
    x=0; char ch=getchar();
    while(ch<0||ch>9) ch=getchar();
    while(ch>=0&&ch<=9){x=(x<<1)+(x<<3)+(ch^48);ch=getchar();}
}
ll ksm(ll a,int p){
    ll res=1; for(;p;p>>=1,a=a*a%mo) if(p&1) res=res*a%mo;
    return res;
}
int T,n,m; ll a,b,x;
int main(){
    read(T);
    while(T--){
        read(n); a=b=0;
        for(int i=1;i<=n;++i){
            read(x); a=(a+x*i)%mo; b=(b+(ll)i*i%mo*x)%mo;
        }
        for(int i=1;i<=n;++i){
            read(x); a=(a-x*i)%mo; b=(b-(ll)i*i%mo*x)%mo;
        }
        if(!a) printf("0\n");
        else printf("1 %lld\n",(b*ksm(a,mo-2)%mo+mo)%mo);
    }
    return 0;
}
        
View Code

异或做法

技术分享
#include<cstdio>
#include<cstring>
using namespace std;
typedef long long ll;
template<class T>
inline void read(T &x){
    x=0; char ch=getchar();
    while(ch<0||ch>9) ch=getchar();
    while(ch>=0&&ch<=9){x=(x<<1)+(x<<3)+(ch^48);ch=getchar();}
}
int T,n; ll x,a;
int f[33],cur,last;
inline void solve(){
    for(int i=1;i<=n;++i){
        read(x); a^=x; cur=0;
        while(x){
            if(x&1) f[cur]^=i;
            ++cur; x>>=1;
        }
    }
}
int main(){
    read(T);
    while(T--){
        read(n); a=0;
        memset(f,0,sizeof(f));
        solve(); solve();
        if(!a) printf("0\n");
        else {
            cur=0; printf("1 ");
            while(a){
                if(a&1){printf("%d\n",f[cur]); break;}
                ++cur; a>>=1;
            }
        }
    }
    return 0;
}
View Code

 

【洛谷八连测R5】whzzt-Confidence

标签:bsp   pen   输入输出格式   http   说明   open   lld   代码   print   

原文地址:http://www.cnblogs.com/huihao/p/7748387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!