[백준/BOJ] 백준 15831번 : 준표의 조약돌
https://www.acmicpc.net/problem/15831 15831번: 준표의 조약돌 첫 줄에 조약돌의 총 개수 N, 준표가 원하는 검은 조약돌의 최대개수 B와 하얀 조약돌의 최소개수 W가 주어진다. 둘째 줄에는 N개의 조약돌의 정보가 한 줄로 주어진다. i번째 문자가 B라면 i번 조 www.acmicpc.net 투 포인터를 이용하여 두 개의 돌의 조건을 확인해서 문제를 해결했다 코드 #include #include #include #include using namespace std; int n, b, w; string stone; int main() { cin.tie(NULL); ios_base::sync_with_stdio(false); cin >> n >> b >> w; cin >> st..
2022.02.05