티스토리 뷰
C가 왤캐 복잡한 빡구현이 나온지 모르겠지만, 망했다 ㅠ 너무 풀기 싫게 생겼다.
근데 저번 305때는 4솔이였는데 그때보다 등수가 더 높다. C가 좀 어렵긴 했나보다. E도 하필 조합론이 나왔고, 좀 나랑 안맞았던 셋 같다.
그래도 업솔빙 하면서 조합론을 연습해봐야 할것 같다. 문제가 너무 코드포스 같았다
A - 3:40
7개씩 숫자를 묶어서 더한 후 출력하면 된다.
#include <iostream>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
#include <string>
#include <cstring>
#define X first
#define Y second
#define NUM 200010
using namespace std;
typedef pair<int, int> pii;
typedef long long ll;
int ans[11];
int main()
{
memset(ans, 0, sizeof(ans));
int n;
cin >> n;
for (int i=0; i<n*7; i++) {
int x;
cin >> x;
ans[i/7] += x;
}
for (int i=0; i<n; i++) {
cout << ans[i] << " ";
}
}
B - 7:35
(i, j) 문자열을 더했을때 펠린드롬인지 확인하는 문제이다.
#include <iostream>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
#include <string>
#include <cstring>
#define X first
#define Y second
#define NUM 200010
using namespace std;
typedef pair<int, int> pii;
typedef long long ll;
int n;
vector<string> v;
int main() {
cin >> n;
for (int i=0; i<n; i++) {
string s;
cin >> s;
v.push_back(s);
}
bool flag = false;
for (int i=0; i<n; i++) {
for (int j=0; j<n; j++) {
if (i != j) {
string s1 = v[i] + v[j];
reverse(s1.begin(), s1.end());
string s2 = v[i] + v[j];
if (s1 == s2) {
flag = true;
}
}
}
}
if (flag) {
cout << "Yes" << '\n';
}
else {
cout << "No" << '\n';
}
}
C - 업솔빙
D - 27:27
흔한 스택문제이다. 열고 닫는거만 신경쓰면 된다.
#include <iostream>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
#include <string>
#include <stack>
#include <cstring>
#define X first
#define Y second
#define NUM 31
using namespace std;
stack<char> s;
string answer = "";
int main() {
int n;
cin >> n;
for (int i=0; i<n; i++) {
char c;
cin >> c;
if (c == '(') {
s.push(c);
}
else if (c == ')') {
if (s.empty()) {
answer += ')';
} else {
while (!s.empty()) {
char cc = s.top();
if (cc == '(') {
s.pop();
break;
}
s.pop();
}
}
}
else {
if (s.empty()) {
answer += c;
} else {
s.push(c);
}
}
}
string res = "";
while (!s.empty()) {
res += s.top();
s.pop();
}
reverse(res.begin(), res.end());
cout << answer + res << '\n';
}
E - 업솔빙
'PS > AtCoder' 카테고리의 다른 글
[Atcoder] ABC308 :: F - Vouchers (2) | 2023.07.04 |
---|---|
[AtCoder] ABC308 (0) | 2023.07.04 |
[Atcoder] ABC306 :: D - Poisonous Full-Course (0) | 2023.06.19 |
[Atcoder] ABC306 :: C - Centers (0) | 2023.06.19 |
[Atcoder] ABC302 :: E - Isolation (0) | 2023.06.15 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Effective Java
- network
- algorithm
- mmu
- GORM
- java
- go
- ARP
- paging
- Database
- Operating System
- soft delete
- effective
- 공지
- OS
- fiber
- spring
- cs
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함