开关灯(利用反逻辑符'!'的常规方法) 摘要:解题思路:灯的状态可用1和0表示,这里用的是1开0关。注意事项:数组的下标是从0开始的,而我们的灯是从1开始,所以需要注意下标的关系参考代码:#include<stdio.h> int main()…… 题解列表 2024年11月13日 1 点赞 0 评论 153 浏览 评分:0.0
开关灯的详细解答 摘要:#include<stdio.h>int main(){ int m,n,i,j; scanf("%d %d",&n,&m); //输出顺序不能错 int a[n+1]; /*第一个人的行为*/ f…… 题解列表 2023年02月14日 0 点赞 0 评论 154 浏览 评分:0.0
很简单的做法 摘要:解题思路:定义数组,初始化为1,有人操作一次就把对应的数取一次反,最后检验哪些数为-1,便输出对应的序号数加1注意事项:这个输出格式太蛋疼了,循环输出就会多一个逗号,用"\b "空…… 题解列表 2025年01月23日 0 点赞 0 评论 19 浏览 评分:0.0
开关灯 C简单易懂 摘要:#### 解题思路: 用数组模拟开关灯 #### 参考代码 ```cpp #include #include #define maxn 5010 int a[maxn]; int …… 题解列表 2023年04月07日 0 点赞 0 评论 216 浏览 评分:0.0
c代码记录之灯状态取反 摘要:记录: I.灯打开时置1,灯关闭时置-1,方便取反状态操作 II.每个输出跟一个逗号,但最后不带逗号,需要处理 III.两种思路,一是一轮一轮的对数组进行操作,二是遍历每一个灯进行所有轮操作 …… 题解列表 2023年12月14日 0 点赞 0 评论 74 浏览 评分:0.0
普通的写法 摘要:```cpp #include using namespace std; int a[5001],n,i,j,m; int main() { cin>>n>>m; boo…… 题解列表 2023年05月01日 0 点赞 0 评论 143 浏览 评分:0.0
题解 2821: 开关灯 (思路:单个灯泡按顺序判断并输出) 摘要:```c #include #include int main() { int i,j,N,M,sign=0; bool a; scanf("%d%d",&N…… 题解列表 2024年04月04日 0 点赞 2 评论 148 浏览 评分:0.0
(c语言)详细解读 摘要:解题思路:数组对应编号取反注意事项:我自己想的,还有不少可以优化的,注释很详细的解释了我的代码参考代码:#include"stdio.h"void main(){ unsigned int h…… 题解列表 2023年01月02日 0 点赞 0 评论 204 浏览 评分:0.0
2821: 开关灯 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n, m, i, j,t=0; int a[5001] …… 题解列表 2024年10月31日 0 点赞 0 评论 101 浏览 评分:0.0
2821: 开关灯(C语言) 摘要: #include int main() { int N;//灯的数量 scanf("%d",&N); int M;//人的数量 scanf("%d",&M); …… 题解列表 2023年07月24日 0 点赞 0 评论 108 浏览 评分:0.0