题解 2821: 开关灯

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

简单又实用

摘要:```cpp #include #include using namespace std; int main() { int N, M; cin >> N >> M; ……

题解 2821: 开关灯

摘要:解题思路:注意事项:参考代码:n,m=map(int,input().strip().split())l = [0 for i in range(n)]for i in range(2,m+1,1):……

2821: 开关灯

摘要:解题思路:注意事项:参考代码:N,M = map(int,input().split())  lights = [1] * N  # 初始化列表  1为开,-1为关 closed = [] fo……

题解 2821: 开关灯

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[6000];int main() { int n,m; cin>>n>>……

2821: 开关灯

摘要:解题思路:注意事项:参考代码:#include <stdio.h>    int main()    {        int n, m, i, j,t=0;         int a[5001] ……

一个菜鸟的写法

摘要:#include<stdio.h>int main(){ //N盏灯初始化 int N = 0; scanf("%d", &N); //M个人初始化 int M = 0; scanf("%d",&M)……

开关灯 C简单易懂

摘要:#### 解题思路: 用数组模拟开关灯 #### 参考代码 ```cpp #include #include #define maxn 5010 int a[maxn]; int ……

2821: 开关灯(C语言)

摘要: #include int main() { int N;//灯的数量 scanf("%d",&N); int M;//人的数量 scanf("%d",&M); ……

很简单的做法

摘要:解题思路:定义数组,初始化为1,有人操作一次就把对应的数取一次反,最后检验哪些数为-1,便输出对应的序号数加1注意事项:这个输出格式太蛋疼了,循环输出就会多一个逗号,用"\b "空……