13 Oct 2020 |
PS
백준 11689번 GCD(n, k) = 1
문제
https://www.acmicpc.net/problem/11689
풀이
자연수 n이 주어졌을 때, GCD(n, k) = 1을 만족하는 자연수 1 ≤ k ≤ n 의 개수는
Euler’s phi function의 정의와 일치한다.
n이 주어졌을때 ϕ(n)을 출력하는 문제
코드
#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
typedef long long ll;
using namespace std;
// https://www.acmicpc.net/problem/11689
ll pi(ll n){
// Eluer pi function
// pi(n) = n과 서로소인 1-n까지 정수의 갯수
// pi(n) = nPI(1-1/p) (p|n)
double ans = n;
for(ll i = 2;i*i<=n;i++){
if(n%i == 0){
while(n%i == 0) n/=i;
ans *= (1.0-(1.0/i));
}
}
if(n>1)
ans *= (1.0-(1.0/n));
return (ll)ans;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> n;
cout << pi(n) << "\n";
return 0;
}
10 Oct 2020 |
PS
HHKB Programming Contest 2020 C번 Neq Min
문제
https://atcoder.jp/contests/hhkb2020/tasks/hhkb2020_c
풀이
수열이 주어졌을 때 매 순서마다 지금까지 수열에 나오지 않았던 수 중 가장 작은 음이 아닌 정수를 출력하는 문제
map을 이용하여 출현 여부를 체크하였고
특정 변수를 이용하여 가장 작은 수를 추적하는 방법으로 구현하였다.
코드
#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll,ll,ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/hhkb2020/tasks/hhkb2020_c
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> n;
vll v(n);
map<ll,ll> isUsed;
ll min = 0;
rep(i,n){
cin >> v[i];
isUsed[v[i]]++;
for(;;min++){
if(isUsed[min] == 0){
break;
}
}
cout << min << "\n";
}
return 0;
}
10 Oct 2020 |
PS
HHKB Programming Contest 2020 B번 Futon
문제
https://atcoder.jp/contests/hhkb2020/tasks/hhkb2020_b
풀이
매트리스를 총 몇가지 방법으로 설치할 수 있는지 묻는 문제
모든 점에 대하여 연속으로 2칸이 존재하는 경우가 총 몇 가지 인지 카운트 한뒤
마지막에 중복을 제거하기 위해 반으로 나누었다.
코드
#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll,ll,ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/hhkb2020/tasks/hhkb2020_b
ll h,w;
ll dir[4][2];
bool isAvailable(ll x, ll y){
if(x >= 0 && y >= 0 && x < h && y < w) return true;
else return false;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
dir[0][0] = dir[1][0] = dir[2][1] = dir[3][1] = 0;
dir[0][1] = dir[2][0] = 1;
dir[1][1] = dir[3][0] = -1
cin >> h >> w;
vector<string> v(h);
rep(i,h){
cin >> v[i];
}
ll ans = 0;
rep(i,h){
rep(j,w){
if(v[i][j] == '.'){
rep(k,4){
ll x = i+dir[k][0];
ll y = j+dir[k][1];
if(isAvailable(x,y) && v[x][y] == '.') ans++;
}
}
}
}
cout << ans/2;
return 0;
}
10 Oct 2020 |
PS
HHKB Programming Contest 2020 A번 Keyboard
문제
https://atcoder.jp/contests/hhkb2020/tasks/hhkb2020_a
풀이
S에 ‘Y’가 입력되면 T를 대문자로
S에 ‘N’이 입력되면 T를 소문자로 출력
코드
#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll,ll,ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/hhkb2020/tasks/hhkb2020_a
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
string s,t;
cin >> s >> t;
if(s[0] == 'Y') {
cout << (char)(t[0]-32);
}
else{
cout << t;
}
return 0;
}
09 Oct 2020 |
PS
백준 1550번 16진수
문제
https://www.acmicpc.net/problem/1550
풀이
단순한 출력형식 변경으로 해결 가능한 문제
코드
#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll,ll,ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://www.acmicpc.net/problem/1550
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> uppercase >> hex >> n;
cout << n;
return 0;
}