티스토리 뷰
SW Expert Academy :: SWEA :: 5431 :: 민석이의 과제 체크하기
출처 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWVl3rWKDBYDFAXm&categoryId=AWVl3rWKDBYDFAXm&categoryType=CODE
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int arr[101], N, K;
vector <int> v;
int main(void) {
std::ios::sync_with_stdio(false); cin.tie(0);
int T; cin >> T;
for (int tc = 1; tc <= T; tc++) {
cin >> N >> K; int tmp;
fill(arr, arr + 101, 0); v.clear();
for (int i = 0; i < K; i++) {
cin >> tmp; arr[tmp] = 1;
}
for (int i = 1; i <= N; i++) {
if (!arr[i]) v.push_back(i);
}
sort(v.begin(), v.end());
cout << "#" << tc;
if (v.size() != 0) {
for (int i = 0; i < v.size(); i++) {
cout << " " << v[i];
}
}
cout << endl;
}
return 0;
}
'알고리즘 > SWEA' 카테고리의 다른 글
[SWEA 5436] 동욱이의 조판하기 (0) | 2018.08.29 |
---|---|
[SWEA 5432] 쇠막대기 자르기 (0) | 2018.08.29 |
[SWEA 2382] 미생물 격리 (0) | 2018.08.16 |
[SWEA 2383] 점심 식사시간 (2) | 2018.08.16 |
[SWEA 1244] 최대 상금 (0) | 2018.08.13 |
- Total
- Today
- Yesterday
- 삼성
- 17779
- 백준
- 알고리즘
- DFS
- 연구소 3
- 이차원 배열과 연산
- hackerrank
- 17143
- 팁
- 게리맨더링 2
- SW Expert Academy
- 입출력
- 2018 KAKAO BLIND RECRUITMENT
- 트렌드
- 시간 복잡도
- 17140
- string
- 역량 테스트
- STL
- 17837
- 미세먼지 안녕!
- 17144
- 2018 카카오 블라인드 채용
- scanf
- 17142
- DP
- boj
- 새로운 게임 2
- SWEA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |