• 第十二周 11.15-11.21


    11.15

    补个BC。

    HDU 5565 Clarke and baton

    没太懂题解怎么搞。反正挺暴力过了。

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <map>
     4 #include <vector>
     5 #include <algorithm>
     6 using namespace std;
     7 typedef long long LL;
     8 const int maxn=1e7+10;
     9 
    10 bool cmp(int a,int b)
    11 {
    12     return a>b;
    13 }
    14 
    15 LL seed;
    16 int a[maxn];
    17 int rand(int l, int r) {
    18     static long long mo=1e9+7, g=78125;
    19     return l+((seed*=g)%=mo)%(r-l+1);
    20 }
    21 
    22 int main(void)
    23 {
    24     int T;scanf("%d",&T);
    25     while(T--)
    26     {
    27         int n,q;
    28         scanf("%d%d%I64d",&n,&q,&seed);
    29         int sum=rand(q, 10000000);
    30         for(int i=1; i<=n; i++) {
    31             a[i]=rand(0, sum/(n-i+1));
    32             sum-=a[i];
    33         }
    34         a[rand(1, n)]+=sum;
    35         map< int,vector<int> > M;
    36         for(int i=1;i<=n;i++) M[a[i]].push_back(i);
    37         map< int,vector<int> >::iterator it=M.end();
    38         while(1)
    39         {
    40             it--;
    41             vector<int> & t=(*it).second;
    42             sort(t.begin(),t.end(),cmp);
    43             for(int i=t.size()-1;i>=0;i--)
    44             {
    45                 if(q==0) break; q--;
    46                 int x=(*it).first,y=t[i];
    47                 M[x-1].push_back(y);
    48                 M[x].pop_back();
    49             }
    50             if(q==0||it==M.begin()) break;
    51         }
    52         int ans=0;
    53         for(it=M.begin();it!=M.end();it++)
    54         {
    55             vector<int> & t=(*it).second;
    56             for(int i=t.size()-1;i>=0;i--) ans^=(*it).first+t[i];
    57         }
    58         printf("%d
    ",ans);
    59     }
    60     return 0;
    61 }
    Aguin

    11.16-11.20

    什么都没干。

    11.21

    去了个白发钱的地方。

    这周BC都没打 还懒得补 没写题的一周 然而感觉只会越来越忙 哭

  • 相关阅读:
    细说Cookie(转)
    Custom Exception in ASP.NET Web API 2 with Custom HttpResponse Message
    内核中的定时器
    ibus拼音安装_ubuntu10.04
    linux模块
    zebra/quagga线程分析
    vim常用配置
    rar安装和使用
    zebra/quagga
    netsnmp编译动态库
  • 原文地址:https://www.cnblogs.com/Aguin/p/4966707.html
Copyright © 2020-2023  润新知