# AtCoder Beginner Contest 184 Tutorial
See the Video Tutorial (opens new window).
And here are the solutions.
# Problem A - Determinant (opens new window)
Code (Python 3)
a, b = map(int, input().split())
c, d = map(int, input().split())
print(a * d - b * c)
1
2
3
2
3
# Problem B - Quizzes (opens new window)
Code (Python 3)
n, x = map(int, input().split())
s = input()
for c in s:
if c == 'o':
x += 1
else:
x = max(0, x - 1)
print(x)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
# Problem C - Super Ryuma (opens new window)
Code (Python 3)
r1, c1 = map(int, input().split())
r2, c2 = map(int, input().split())
if r1 == r2 and c1 == c2:
print(0)
elif r1 + c1 == r2 + c2 or r1 - c1 == r2 - c2 or abs(r1 - r2) + abs(c1 - c2) <= 3:
print(1)
elif (r1 + c1 + r2 - c2) % 2 == 0:
print(2)
else:
for i in range(-3, 4):
for j in range(-3, 4):
if abs(i) + abs(j) > 3:
continue
r = r1 + i
c = c1 + j
if r + c == r2 + c2 or r - c == r2 - c2 or abs(r - r2) + abs(c - c2) <= 3:
print(2)
exit(0)
print(3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Problem D - increment of coins (opens new window)
Code (C++)
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <vector>
#define MAXN 101
using namespace std;
double memo[MAXN][MAXN][MAXN]{};
double dfs(vector<int> &coins) {
if (coins[1] == 0)
return 100.0 - coins[0];
if (coins[0] == 100 || coins[1] == 100 || coins[2] == 100)
return 0.0;
if (memo[coins[0]][coins[1]][coins[2]] >= 0)
return memo[coins[0]][coins[1]][coins[2]];
int s = 0;
for (int coin : coins)
s += coin;
double ans = 0;
for (int i = 0; i < 3; ++i) {
if (coins[i] > 0) {
vector<int> nxt(coins);
nxt[i]++;
ans += (double)coins[i] / s * (1 + dfs(nxt));
}
}
return memo[coins[0]][coins[1]][coins[2]] = ans;
}
int main() {
vector<int> coins(3);
for (int i = 0; i < 3; ++i)
cin >> coins[i];
sort(coins.rbegin(), coins.rend());
memset(memo, -1.0, sizeof(memo));
printf("%.12f", dfs(coins));
}
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
32
33
34
35
36
37
38
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
32
33
34
35
36
37
38
# Problem E - Third Avenue (opens new window)
Code (C++)
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
const int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, -1, 0, 1};
const int INF = 0x3f3f3f3f;
int main() {
int h, w;
cin >> h >> w;
vector<string> a(h);
int si, sj, gi, gj;
vector<vector<pair<int, int>>> tele(26);
for (int i = 0; i < h; ++i) {
cin >> a[i];
for (int j = 0; j < w; ++j) {
if (a[i][j] == 'S')
si = i, sj = j;
if (a[i][j] == 'G')
gi = i, gj = j;
if (a[i][j] >= 'a' && a[i][j] <= 'z')
tele[a[i][j] - 'a'].emplace_back(i, j);
}
}
vector<bool> used(26);
vector<vector<int>> dist(h, vector<int>(w, INF));
dist[si][sj] = 0;
queue<pair<int, int>> q;
q.emplace(si, sj);
while (!q.empty()) {
auto [i, j] = q.front();
q.pop();
if (i == gi && j == gj) {
cout << dist[i][j] << endl;
return 0;
}
for (int k = 0; k < 4; ++k) {
int ni = i + dy[k], nj = j + dx[k];
if (ni < 0 || ni >= h || nj < 0 || nj >= w || dist[ni][nj] != INF ||
a[ni][nj] == '#')
continue;
dist[ni][nj] = dist[i][j] + 1;
q.emplace(ni, nj);
}
if (a[i][j] >= 'a' && a[i][j] <= 'z' && !used[a[i][j] - 'a']) {
used[a[i][j] - 'a'] = true;
for (auto [ni, nj] : tele[a[i][j] - 'a']) {
if (dist[ni][nj] == INF) {
dist[ni][nj] = dist[i][j] + 1;
q.emplace(ni, nj);
}
}
}
}
cout << -1 << endl;
}
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Problem F - Programming Contest (opens new window)
Code (C++)
#include <iostream>
#include <set>
#include <vector>
using namespace std;
typedef long long ll;
int main() {
int n, t;
cin >> n >> t;
vector<int> a(n);
for (int i = 0; i < n; ++i)
cin >> a[i];
set<int> L, R;
L.insert(0), R.insert(0);
int l = n / 2, r = n - l;
for (int i = 0; i < (1 << l); ++i) {
int s = 0;
for (int j = 0; j < l; ++j) {
if (i & (1 << j))
s += a[j];
if (s > t)
break;
}
if (s <= t)
L.insert(s);
}
for (int i = 0; i < (1 << r); ++i) {
int s = 0;
for (int j = 0; j < r; ++j) {
if (i & (1 << j))
s += a[l + j];
if (s > t)
break;
}
if (s <= t)
R.insert(s);
}
int ans = 0;
for (int li : L) {
auto it = R.lower_bound(t + 1 - li);
if (it != R.begin())
--it;
if (li + *it <= t)
ans = max(ans, li + *it);
if (ans == t)
break;
}
cout << ans << endl;
}
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48