-
백준 5176번: 대회 자리구현(Implementation) 2018. 7. 23. 13:15반응형
https://www.acmicpc.net/problem/5176
1. 문제
이번 ACM-ICPC 대회의 자리는 참가자들이 직접 정한다. 참가자들은 예비 소집일에 자신이 원하는 자리를 미리 정해놓았고, 대회 당일에 어제 적어놓은 자리에 앉으면 된다. 여러명이 같은 자리를 적어논 경우에는, 먼저 도착한 사람이 그 자리에 앉게되고, 앉지 못한 사람은 대회에 참가할 수 없다.
각 사람이 선호하는 자리가 주어졌을 때, 대회에 참가하지 못하는 사람의 수를 구하는 프로그램을 작성하시오.
2. 알고리즘
키워드 - 구현, 배열
3. 코드
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849#include <iostream>#include <sstream>#include <string>#include <algorithm>#include <functional>#include <vector>#include <list>#include <queue>#include <deque>#include <map>#include <set>#include <stack>#include <math.h>#include <memory.h>using namespace std;#define MAX_SIZE 100#define INF 0x7fffffff#define CENDL "\n"#define ll long longint table[501];int main() {cin.tie(0);std::ios::sync_with_stdio(false);int t; cin >> t;while(t--) {int n, m; cin >> n >> m;int sol = 0;memset(table, 0, sizeof(table));for (int i=0; i<n; i++) {int d; cin >> d;if (table[d] == 0 ) {table[d] = 1;} else {sol++;}}cout << sol << CENDL;}return 0;}cs 반응형'구현(Implementation)' 카테고리의 다른 글
백준 10829번: 이진수 변환 (0) 2018.07.23 백준 5789번: 한다 안한다 (0) 2018.07.23 백준 4613번: Quicksum (0) 2018.07.20 백준 3449번: 해밍 거리 (0) 2018.07.20 백준 2145번: 숫자 놀이 (0) 2018.07.19