博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
纪中17日T1 2321. 方程
阅读量:5273 次
发布时间:2019-06-14

本文共 2174 字,大约阅读时间需要 7 分钟。

纪中17日T1 2321. 方程

(File IO): input:cti.in output:cti.out

时间限制: 1000 ms  空间限制: 262144 KB  具体限制  

题目描述

输入

输出

 

样例输入

 

样例输出

数据范围限制

 

提示

 

吐槽

这些图片太模糊了吧……

还有那吓人的 mod 998244353

都使得我们对这道题的恐惧感叠加了998244353层……

没想到……只有三种答案!(三进制呵呵哒)

Solution

(约定:用line[i]表示第i个输入的数据,man[i]表示在第i位是否为男生(i from 1 to n))

step1

先对line[1]进行判断:

  若line[1]==0

    直接dfs

  若line[1]==1

    进行两遍dfs,其中一遍man[1]=1,另一边man[2]=1;

  若line[1]==2

    一遍dfs,man[1]=man[2]=1;

if(line[1]==1){    man[1]=1;    dfs(1);    memset(man,0,sizeof(man));    man[2]=1;    dfs(1);    }if(line[1]==0) dfs(1);if(line[1]==2){    man[1]=man[2]=1;    dfs(1);}

 

处理完在边缘位置的line[1]后,接下来就好操作了。

step2

写dfs

int t,n,ans,line[1000000];bool man[1000000];IL void dfs(int depth){    int now=0;    if(depth>1) now+=man[depth-1];    if(depth

step3

按照题目的意思

怎么看上去像打了马赛克呢……

这个快读是专门给line的!

IL int read(){    char ch=getchar();    while(ch<'0'||ch>'5')    {        ch=getchar();    }    return (int)ch^48;}
for(int i=0;i<=n;i++)            line[i]=read();

step4

输出答案

printf("%d\n",ans/2);

 

别问我为什么要除以2

自己去推到dfs的结果吧。

我已经被接下来的问题折磨疯了……

Code

#include
#include
#include
#define IL inlineusing namespace std;int t,n,ans,line[1000000];bool man[1000000];IL void dfs(int depth){ int now=0; if(depth>1) now+=man[depth-1]; if(depth
'5') { ch=getchar(); } return (int)ch^48;}int main(){// freopen("cti.in","r",stdin);// freopen("cti.out","w",stdout); scanf("%d",&t); while(t--) { scanf("%d",&n); ans=0; memset(man,0,sizeof(man)); for(int i=1;i<=n;i++) line[i]=read(); if(line[1]==1){ man[1]=1; dfs(1); memset(man,0,sizeof(man)); man[2]=1; dfs(1); } if(line[1]==0) dfs(1); if(line[1]==2){ man[1]=man[2]=1; dfs(1); } printf("%d\n",ans/2); } return 0;}

Problem

我不能通过#9!

运行时错误?

我又调试了很久很久……

发现了一个叫“段错误”的东西

program received signal SIGSEGV,segmentation fault

有些内存是内核占用的或者是其他程序正在使用,为了保证系统正常工作,所以会受到系统的保护,而不能任意访问。

或者时数组越界……

老师正在看另一个老师打游戏,不想理我……

哼唧……

转载于:https://www.cnblogs.com/send-off-a-friend/p/11369831.html

你可能感兴趣的文章
在Linux下测试SD卡的读写速度
查看>>
闭合电路欧姆定律 证明题1
查看>>
第三次作业-效能分析
查看>>
关于【最长递增子序列(LIS)】
查看>>
HDU 5768:Lucky7(中国剩余定理 + 容斥原理)
查看>>
训练总结
查看>>
HDU 3949:XOR(高斯消元+线性基)
查看>>
next_permutation()—遍历全排列
查看>>
JNA的使用
查看>>
Web设计的十大错误
查看>>
React总结
查看>>
BSP:bootstrap导航栏:navbar,navbar-default,collapse
查看>>
【洛谷2304_LOJ2134】[NOI2015]小园丁与老司机(动态规划_网络流)
查看>>
linux下清除tomcat缓存
查看>>
WPF自定义仪表盘控件
查看>>
WPF绘制折线
查看>>
VS2017MVC+EF+MySQL环境搭建
查看>>
利用OpacityMask制作打洞效果
查看>>
visualsvn server 提交修改日志
查看>>
WPF 自定义键盘焦点样式(FocusVisualStyle)
查看>>