Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 누적 합
- 유니온 파인드
- Unreal Engine 5
- 시뮬레이션
- c++
- XR Interaction Toolkit
- DFS
- 문자열
- 자료구조
- 구현
- 정렬
- 알고리즘
- BFS
- 투 포인터
- 우선순위 큐
- VR
- Team Fortress 2
- 브루트포스
- 재귀
- 다이나믹 프로그래밍
- 스택
- 트리
- 유니티
- 백트래킹
- 백준
- 수학
- 다익스트라
- ue5
- 그리디 알고리즘
- 그래프
Archives
- Today
- Total
1일1알
백준 1244번 스위치 켜고 끄기 C++ 본문
입력받은 순서대로 시뮬레이션 해가면서 문제를 해결하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
void ChangeSwitch(int gender, int num, vector<bool>& sw) {
if (gender == 1) {
int idx = num;
while (idx < sw.size()) {
sw[idx] = !sw[idx];
idx += num;
}
}
else {
sw[num] = !sw[num];
int left = num - 1;
int right = num + 1;
while (true) {
if (left < 1 || right >= sw.size()) break;
if (sw[left] != sw[right]) break;
sw[left] = !sw[left];
sw[right] = !sw[right];
left--;
right++;
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, m;
cin >> n;
vector<bool> sw(n + 1, false);
for (int i = 1; i <= n; i++) {
int input;
cin >> input;
if (input == 1) sw[i] = true;
}
cin >> m;
for (int i = 0; i < m; i++) {
int gender, num;
cin >> gender >> num;
ChangeSwitch(gender, num, sw);
}
for (int i = 1; i <= n; i++) {
cout << sw[i] << " ";
if (i % 20 == 0) cout << "\n";
}
};
'알고리즘' 카테고리의 다른 글
백준 1270번 전쟁-땅따먹기 C++ (0) | 2022.04.19 |
---|---|
백준 1251번 단어 나누기 C++ (0) | 2022.04.18 |
백준 1235번 학생 번호 C++ (0) | 2022.04.16 |
백준 1213번 팰린드롬 만들기 C++ (0) | 2022.04.15 |
백준 1113번 수영장 만들기 C++ (0) | 2022.04.14 |