14 Jan 2021 |
PS
AtCoder Beginner Contest 187 C번 1-SAT
문제
https://atcoder.jp/contests/abc187/tasks/abc187_c
풀이
set 자료형을 이용하여 손쉽게 해결 가능
loop를 돌다가 한가지 케이스라도 발견되면 바로 출력 후 빠져나오자
코드
#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/abc187/tasks/abc187_c
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> n;
vector<string> s(n);
rep(i,n) cin >> s[i];
unordered_set<string> h(all(s));
rep(i,n){
if(h.count('!' + s[i])){
cout << s[i];
return 0;
}
}
cout << "satisfiable";
return 0;
}
14 Jan 2021 |
PS
AtCoder Beginner Contest 187 B번 Gentle Pairs
문제
https://atcoder.jp/contests/abc187/tasks/abc187_b
풀이
n개의 좌표가 입력으로 들어오고 두 점을 지나는 직선의 기울기 m이 -1 <= m <= 1 인 경우가 총 몇가지인지 구하는 문제
n <= 1000 이므로 O(n^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/abc187/tasks/abc187_b
ld slope(ll x1, ll y1, ll x2, ll y2){
return (ld)(y1-y2)/(ld)(x1-x2);
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> n;
vll x(n);
vll y(n);
ll ans = 0;
rep(i,n) cin >> x[i] >> y[i];
for(int i = 0;i<n;i++){
for(int j = i+1;j<n;j++){
ld temp = slope(x[i],y[i],x[j],y[j]);
if(temp >= -1 && temp <= 1) ans++;
}
}
cout << ans;
return 0;
}
14 Jan 2021 |
PS
AtCoder Beginner Contest 187 A번 Large Digits
문제
https://atcoder.jp/contests/abc187/tasks/abc187_a
풀이
입력받은 두 수중 각 자릿수 합이 높은 수의 각 자릿수 합을 출력하는 문제
입력받은 두 수 A,B 는 세자리 수로 고정되어있기 때문에 각 수의 자릿수 합을 구해서 큰 수를 출력하면 정답
코드
#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/abc187/tasks/abc187_a
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll a,b;
cin >> a >> b;
ll _a = 0, _b = 0;
while(a){
_a += a%10;
a/=10;
}
while(b){
_b += b%10;
b/=10;
}
cout << max(_a,_b);
return 0;
}
13 Jan 2021 |
PS
AtCoder Beginner Contest 186 D번 Sum of difference
문제
https://atcoder.jp/contests/abc186/tasks/abc186_d
풀이
입력 받은 수열의 모든 pair의 차의 합을 구하는 문제
Ai - Aj |
를 구한다고 할 때 j를 고정시키고 생각해보자 |
N = 3이며 A는 sort되어 있다고 가정해 보자. j = 2일때
- A2 - A0
- A2 - A1
= 2A2 - (A0 + A1)
= jAj - Sj
여기서 S는 A의 누적합계이다.
j*Aj - Sj를 j= 0,1,…N 까지 반복하면 O(N)시간에 해결 가능
코드
#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/abc186/tasks/abc186_d
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> n;
vll a(n);
for(int i = 0;i<n;i++){
cin >> a[i];
}
sort(all(a));
ll ans=0, tmp=0;
for(int i = 1;i<n;i++){
tmp += ((a[i]-a[i-1]) * i);
ans += tmp;
}
cout << ans;
return 0;
}
13 Jan 2021 |
PS
AtCoder Beginner Contest 186 C번 Unlucky 7
문제
https://atcoder.jp/contests/abc186/tasks/abc186_c
풀이
1부터 n까지의 수 중 10진수와 8진수에서 7이 존재하지 않는 수는 몇가지인지 세는 문제
n <= 10^5이기 때문에 모든 수를 돌면서 체크해도 충분히 통과가 가능하다.
코드
#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/abc186/tasks/abc186_c
string toOct(ll n){
string s = "";
while(n){
s += to_string(n%8);
n /= 8;
}
return s;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> n;
ll ans = 0;
for(ll i = 1;i<=n;i++){
if(to_string(i).find('7') == -1 && toOct(i).find('7') == -1)
ans++;
}
cout << ans;
return 0;
}