[contest 782] 9.7 - XJOI

个人觉得温暖题啊,,,可是卡毛空间呀!!!

T1 传送

KXv3irV2idC98WYQBSgkt5akubMMKgdXP6FA3acJ

UbACBgBI2AEjEAPERhCyOgWKZuEe4i0VRkBI2AEj

线性筛预处理,然后一遍BFS。显然,这个BFS是O(n)的,主要要卡的就是预处理。

code:

 %:pragma gcc optimize()
 #include<cstdio>
 #include<cstring>
 #include<algorithm>
 #include<cmath>
 using namespace std;
 ;
 int L,R,n,H,T;
 ],cnt;
 bool isp[N];
 int Q[N],f[N];
 short D[N];
 void Maker(){
     memset(isp,,]=isp[]=;
     memset(p,,,D[]=;
     ; i<N; i++){
         ;
         ; j<=cnt&&(long long)i*p[j]<N; j++){
             isp[i*p[j]]=;
             ){
                 ;
                 ) c++,now/=p[j];
                 D[i*p[j]]=D[i]/(c+)*(c+);
                 break;
             }else D[i*p[j]]=D[i]+D[i];
         }
     }
 }
 )%N,Q[T]=x;}
 int main(){
     Maker();
     int Ts; scanf("%d",&Ts);
     for (; Ts; Ts--){
         scanf("%d%d%d",&L,&R,&n);
         memset(Q,,,T=,Q[]=L;
         memset(f,,;
         int x,y;
         if (L!=R)
         while (H!=T){
             H=(H+)%N,x=Q[H],y=D[x]; if (x==R) break;
             if (x+y<=n){
                 ) f[x+y]=f[x]+,pus(x+y);
             }
             ){
                 ) f[x-y]=f[x]+,pus(x-y);
             }
         }
         printf("%d\n",f[R]);
     }
     ;
 }

T2 异或

weWmVaOx2KcHQAAAABJRU5ErkJggg==

AAAAAElFTkSuQmCC

一眼就是字典树,然而我把ch数组初值赋了-1然后计数时出现了一些奇妙的事情。。。

事实上,ai^x<=lim这是没有不等式规律的,然而,我们可以把他按位来计算,字典树就很有作用了。

复杂度大概是O(30n)。

code:

 #include<cstdio>
 #include<cstring>
 #include<algorithm>
 #define M(a,x) memset(a,x,sizeof a)
 #define jug(i,x) (((1<<i)&x)>0)
 using namespace std;
 ;
 int n,m,a[N];
 struct Trie{
     ][],va[N*];
     void init(){
         siz=,M(ch,),M(va,);
     }
     void insert(int x){
         ;
         ; i>=; i--){
             bool c=jug(i,x);
             if (!ch[u][c]) ch[u][c]=++siz;
             u=ch[u][c],va[u]++;
         }
     }
     int query(int x,int lim){
         ) ;
         ,ret=n;
         ; i>=; i--){
             bool v=jug(i,x),w=jug(i,lim);
             ) ret-=va[ch[u][-(w^v)]];
             u=ch[u][w^v];
         }
         return ret;
     }
 }t;
 inline int read(){
     ; char ch=getchar();
     ') ch=getchar();
     +ch-',ch=getchar();
     return x;
 }
 int main(){
     n=read(),m=read(),t.init();
     ; i<=n; i++)
         a[i]=read(),t.insert(a[i]);
     for (; m; m--){
         int x=read(),L=read(),R=read();
         printf());
     }
     ;
 }

T3 棋盘

rFGHaKtyaVHzcGvXri2uvfbaqmj6SUACEpCABCQg

w8LKUC13ZFlnAAAAABJRU5ErkJggg==

md,看到这题就想表一下。为什么要卡16MB!!!

还不是因为我手贱将f[1<<20]“细心地”变成f[1<<21],然后爆了0.39M内存。。。

好吧,这就是个状压DP,真的水。

code:

 %:pragma gcc optimize()
 #include<cstdio>
 #include<cstring>
 #include<algorithm>
 #include<queue>
 #define LL long long
 using namespace std;
 ;
 ][];
 <<];
 LL ans;
 int main(){
     scanf(<<n);
     ; i<n; i++) scanf("%s",G[i]);
     memset(f,,sizeof f);
     ; i<n; i++) ][i]==<<i]=;
     ; r<n; r++){
         ; j--)
             ; i<n; i++)
             <<i)&j)==)
                 f[j|(<<i)]=((LL)f[j|(<<i)]+f[j])%TT;
         ; i<n; i++) <<i]++;
     }
     ; j<M; j++){
         ;
         ; i<n; i++) <<i)&j) c++;
         if (c==k) ans=(ans+f[j])%TT;
     }
     printf("%lld",ans%TT);
     ;
 }

总而言之,题目不难,限制变态。。。

[contest 782] 9.7的更多相关文章

  1. Codeforces 782C. Andryusha and Colored Balloons 搜索

    C. Andryusha and Colored Balloons time limit per test:2 seconds memory limit per test:256 megabytes ...

  2. 树的性质和dfs的性质 Codeforces Round #403 (Div. 2, based on Technocup 2017 Finals) E

    http://codeforces.com/contest/782/problem/E 题目大意: 有n个节点,m条边,k个人,k个人中每个人都可以从任意起点开始走(2*n)/k步,且这个步数是向上取 ...

  3. 2-sat Codeforces Round #403 (Div. 2, based on Technocup 2017 Finals) D

    http://codeforces.com/contest/782/problem/D 题意: 每个队有两种队名,问有没有满足以下两个条件的命名方法: ①任意两个队的名字不相同. ②若某个队 A 选用 ...

  4. Codeforces Round #403 (Div. 2, based on Technocup 2017 Finals) E Underground Lab

    地址:http://codeforces.com/contest/782/problem/E 题目: E. Underground Lab time limit per test 1 second m ...

  5. Codeforces Round #403 (Div. 2, based on Technocup 2017 Finals) D. Innokenty and a Football League

    地址:http://codeforces.com/contest/782/problem/D 题目: D. Innokenty and a Football League time limit per ...

  6. Codeforces Round #403 (Div. 2, based on Technocup 2017 Finals) C Andryusha and Colored Balloons

    地址:http://codeforces.com/contest/782/problem/C 题目: C. Andryusha and Colored Balloons time limit per ...

  7. Codeforces Round #403 (Div. 2, based on Technocup 2017 Finals) B. The Meeting Place Cannot Be Changed

    地址:http://codeforces.com/contest/782/problem/B 题目: B. The Meeting Place Cannot Be Changed time limit ...

  8. Codeforces Round #403 (Div. 2, based on Technocup 2017 Finals) A. Andryusha and Socks

    地址:http://codeforces.com/contest/782/problem/A 题目: A. Andryusha and Socks time limit per test 2 seco ...

  9. 【codeforces 782C】Andryusha and Colored Balloons

    [题目链接]:http://codeforces.com/contest/782/problem/C [题意] 给你一棵树 让你满足要求 ->任意相连的3个节点的颜色不能相同 的情况下进行染色 ...

随机推荐

  1. python3.6配置libsvm2.2

    参考自:https://blog.csdn.net/weixin_35884839/article/details/79398085 由于需要使用到libsvm,所以开始配这个,所幸一次性就成功了. ...

  2. hihoCoder 1145 幻想乡的日常(树状数组 + 离线处理)

    http://hihocoder.com/problemset/problem/1145?sid=1244164 题意: 幻想乡一共有n处居所,编号从1到n.这些居所被n-1条边连起来,形成了一个树形 ...

  3. MySQL GROUP BY语句

    GROUP BY 语句根据一个或多个列对结果集进行分组 在分组的列上我们可以使用COUNT.SUM.AVG等函数 SELECT column_name,function(column_name) FR ...

  4. bean之间的属性是怎么维护的

    spring对象[bean]之间的属性是通过什么维护的: 1.构造方法:标签:constructor-arg 2.set方法:标签:property <beans xmlns="htt ...

  5. Codeforces Round #267 (Div. 2) D. Fedor and Essay tarjan缩点

    D. Fedor and Essay time limit per test 2 seconds memory limit per test 256 megabytes input standard ...

  6. python 部分函数

    abs(number) ,返回数字的绝对值cmath.sqrt(number) ,返回平方根,也可以应用于负数float(object) ,把字符串和数字转换为浮点数help() ,提供交互式帮助in ...

  7. dockerfile debian 和pip使用国内源

    python官方镜像是基于debian的.国内使用时定制一下,加快下载速度. 1 debian本身使用国内源 dockfile中: #国内debian源 ADD sources.list /etc/a ...

  8. 线性代数 | Linear Algebra

    网上说<线性代数应该这样学>非常不错,再配合大学教材,把线性代数的基本知识点过一遍. 线性代数 - 知乎 最近在跟一个教程:李宏毅的线性代数 基本知识: Rn :We denote the ...

  9. WPF触发器(Trigger)

    WPF触发器(Trigger.DataTrigger.EventTrigger) WPF中有种叫做触发器的东西(记住不是数据库的trigger哦).它的主要作用是根据trigger的不同条件来自动更改 ...

  10. 自己动手编写IPv4地址包含关系测试的小脚本

    工作中需要对地址包含关系进行测试,现有ipaddress标准库和IPy无法满足,于是自己动手编写小脚本,主要实现== , in, <等专用功能,其他功能可以后续用到再补充,例如迭代打印网段内所有 ...