aboutsummaryrefslogtreecommitdiff
path: root/2017/day4/tuning.cpp
blob: d2bddd9c88ffd8b1c4bf18e5844ec48961a728d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <bits/stdc++.h>
using namespace std;
 
int main() {
	ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
 
	int N;
	cin >> N;
	int ans = 1, cnt = 1;
	for (int i = 2; i < N; ++i) {
		if (cnt) {
			cout << ans << ' ' << i << endl;
			string s; cin >> s;
			s[0] == 'S' ? ++cnt : --cnt;
		}
		else {
			ans = i;
			++cnt;
		}
	}
	cout << (cnt ? ans : N) << endl;
}