• hdu 5269 ZYB loves Xor I


    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
    Total Submission(s): 538    Accepted Submission(s): 259


    Problem Description
    Memphis loves xor very musch.Now he gets an array A.The length of A is n.Now he wants to know the sum of all (lowbit(Ai xor Aj)) (i,j[1,n])
    We define that lowbit(x)=2k,k is the smallest integer satisfied ((x and 2k)>0)
    Specially,lowbit(0)=0
    Because the ans may be too big.You just need to output ans mod 998244353
     
    Input
    Multiple test cases, the first line contains an integer T(no more than 10), indicating the number of cases. Each test case contains two lines
    The first line has an integer n
    The second line has n integers A1,A2....An
    n[1,5104]Ai[0,229]
     
    Output
    For each case, the output should occupies exactly one line. The output format is Case #x: ans, here x is the data number begins at 1.
     
    Sample Input
    2
    5
    4 0 2 7 0
    5
    2 6 5 4 0
     
    Sample Output
    Case #1: 36
    Case #2: 40
     
    /*time 62ms
    by atrp
    */
    #include <cstdio>
    #include <algorithm>
    #include <cstring>
    #include <map>
    using namespace std;
    typedef long long ll;
    const int N = 50005;
    int a[N];
    int n, forc;
    ll ans;
    int cmp(int a, int b)
    {
        return (a & (1 << forc)) < (b & (1 << forc));
    }
    int calc(int low, int high)//寻找排序后a[low。。high - 1]中二进制第forc位不同的分界点,区间为[low,high);
    {
        int i;
        for(i = low; i < high; ++i)
            if((a[i] & (1 << forc)) ^ (a[i + 1] & (1 << forc))) break;
            if(i == high) return i;
            else return i + 1;//注意这里的边界处理
    }
    void solve(int low, int high)
    {
        sort(a + low, a + high, cmp);
        int m = calc(low, high);
        // printf("[%d] - [%d]
    ", m, high);
        int mi = *min_element(a + low, a + high);
        int mx = *max_element(a + low, a + high);
        if(mi == mx) return;//当[low,high)中的元素相等时,无需继续递归
        forc++;
        solve(low, m);
        solve(m, high);
        forc--;
        ans += ((m - low) % 998244353) * ((high - m) % 998244353) * (1 << forc) ;
    }
    int main()
    {
        int t, ca = 1;
        scanf("%d", &t);
        while(t --)
        {
            scanf("%d", &n);
            for(int i = 0; i < n; ++i) scanf("%d", &a[i]);
            forc = 0;
            ans = 0;
            solve(0, n);
            printf("Case #%d: %lld
    ", ca++,(ans << 1) % 998244353);
        }
    }
    

      

    Source
  • 相关阅读:
    WebService中Dataset的压缩序列化和解压反序列化(DataSetSurrogate的使用)
    IOleControl 代码一,测试有问题,备忘
    关于Stream和byte之间的转换 .
    webbrowser 实现IOleControl接口2
    JavaScropt获取网页、浏览器、屏幕高度和宽度
    Oracle默认的用户名和密码
    window.showModalDialog()用法及注意事项
    Android1.6开发环境配置
    string与stream互相转换
    GirdView实现单选、FooterTemplate实现新建和PagerTemplate实现分页
  • 原文地址:https://www.cnblogs.com/orchidzjl/p/4609707.html
Copyright © 2020-2023  润新知