feat(codeforces): more div. 3 as
This commit is contained in:
parent
c565027c13
commit
cdf73b9909
136 changed files with 1155 additions and 1 deletions
79
codeforces/1043/2132a.cc
Normal file
79
codeforces/1043/2132a.cc
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
#include <bits/stdc++.h> // {{{
|
||||
|
||||
#include <version>
|
||||
#ifdef __cpp_lib_ranges_enumerate
|
||||
#include <ranges>
|
||||
namespace rv = std::views;
|
||||
namespace rs = std::ranges;
|
||||
#endif
|
||||
|
||||
#pragma GCC optimize("O2,unroll-loops")
|
||||
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
|
||||
|
||||
using namespace std;
|
||||
|
||||
using i16 = int16_t;
|
||||
using u16 = uint16_t;
|
||||
using i32 = int32_t;
|
||||
using u32 = uint32_t;
|
||||
using i64 = int64_t;
|
||||
using u64 = uint64_t;
|
||||
using f64 = double;
|
||||
using f128 = long double;
|
||||
|
||||
#if __cplusplus >= 202002L
|
||||
template <typename T>
|
||||
constexpr T MIN = std::numeric_limits<T>::min();
|
||||
|
||||
template <typename T>
|
||||
constexpr T MAX = std::numeric_limits<T>::max();
|
||||
#endif
|
||||
|
||||
#ifdef LOCAL
|
||||
#define db(...) std::print(__VA_ARGS__)
|
||||
#define dbln(...) std::println(__VA_ARGS__)
|
||||
#else
|
||||
#define db(...)
|
||||
#define dbln(...)
|
||||
#endif
|
||||
// }}}
|
||||
|
||||
void solve() {
|
||||
u32 n, m;
|
||||
string a, b, c;
|
||||
cin >> n;
|
||||
cin >> a;
|
||||
cin >> m;
|
||||
cin >> b >> c;
|
||||
|
||||
for (u32 i = m; i >= 1; --i) {
|
||||
if (c[i - 1] == 'V') {
|
||||
print("{}", b[i - 1]);
|
||||
}
|
||||
}
|
||||
print("{}", a);
|
||||
for (u32 i = 0; i < m; ++i) {
|
||||
if (c[i] == 'D') {
|
||||
print("{}", b[i]);
|
||||
}
|
||||
}
|
||||
println();
|
||||
}
|
||||
|
||||
int main() { // {{{
|
||||
std::cin.exceptions(std::cin.failbit);
|
||||
#ifdef LOCAL
|
||||
std::cerr.rdbuf(std::cout.rdbuf());
|
||||
std::cout.setf(std::ios::unitbuf);
|
||||
std::cerr.setf(std::ios::unitbuf);
|
||||
#else
|
||||
std::cin.tie(nullptr)->sync_with_stdio(false);
|
||||
#endif
|
||||
u32 tc = 1;
|
||||
std::cin >> tc;
|
||||
for (u32 t = 0; t < tc; ++t) {
|
||||
solve();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
// }}}
|
||||
21
codeforces/1043/io/2132a.1.cpin
Normal file
21
codeforces/1043/io/2132a.1.cpin
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
4
|
||||
2
|
||||
ot
|
||||
2
|
||||
ad
|
||||
DV
|
||||
3
|
||||
efo
|
||||
7
|
||||
rdcoecs
|
||||
DVDVDVD
|
||||
3
|
||||
aca
|
||||
4
|
||||
bbaa
|
||||
DVDV
|
||||
3
|
||||
biz
|
||||
4
|
||||
abon
|
||||
VVDD
|
||||
4
codeforces/1043/io/2132a.1.cpout
Normal file
4
codeforces/1043/io/2132a.1.cpout
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dota
|
||||
codeforces
|
||||
abacaba
|
||||
babizon
|
||||
6
codeforces/1043/io/2132b.1.cpin
Normal file
6
codeforces/1043/io/2132b.1.cpin
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
5
|
||||
1111
|
||||
12
|
||||
55
|
||||
999999999999999999
|
||||
1000000000000000000
|
||||
8
codeforces/1043/io/2132b.1.cpout
Normal file
8
codeforces/1043/io/2132b.1.cpout
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
2
|
||||
11 101
|
||||
0
|
||||
1
|
||||
5
|
||||
3
|
||||
999999999 999000999000999 90909090909090909
|
||||
0
|
||||
8
codeforces/1043/io/2132c1.1.cpin
Normal file
8
codeforces/1043/io/2132c1.1.cpin
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
7
|
||||
1
|
||||
3
|
||||
8
|
||||
2
|
||||
10
|
||||
20
|
||||
260010000
|
||||
7
codeforces/1043/io/2132c1.1.cpout
Normal file
7
codeforces/1043/io/2132c1.1.cpout
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
3
|
||||
10
|
||||
26
|
||||
6
|
||||
36
|
||||
72
|
||||
2250964728
|
||||
9
codeforces/1043/io/2132c2.1.cpin
Normal file
9
codeforces/1043/io/2132c2.1.cpin
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
8
|
||||
1 1
|
||||
3 3
|
||||
8 3
|
||||
2 4
|
||||
10 10
|
||||
20 14
|
||||
3 2
|
||||
9 1
|
||||
8
codeforces/1043/io/2132c2.1.cpout
Normal file
8
codeforces/1043/io/2132c2.1.cpout
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
3
|
||||
9
|
||||
-1
|
||||
6
|
||||
30
|
||||
63
|
||||
10
|
||||
33
|
||||
7
codeforces/1043/io/2132d.1.cpin
Normal file
7
codeforces/1043/io/2132d.1.cpin
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
6
|
||||
5
|
||||
10
|
||||
13
|
||||
29
|
||||
1000000000
|
||||
1000000000000000
|
||||
6
codeforces/1043/io/2132d.1.cpout
Normal file
6
codeforces/1043/io/2132d.1.cpout
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
15
|
||||
46
|
||||
48
|
||||
100
|
||||
4366712386
|
||||
4441049382716054
|
||||
27
codeforces/1043/io/2132e.1.cpin
Normal file
27
codeforces/1043/io/2132e.1.cpin
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
4
|
||||
3 4 5
|
||||
10 20 30
|
||||
1 2 3 4
|
||||
0 0 0
|
||||
3 4 7
|
||||
3 4 4
|
||||
1 4 4
|
||||
2 2 4
|
||||
5 5 2
|
||||
500000000 300000000 100000000 900000000 700000000
|
||||
800000000 400000000 1000000000 600000000 200000000
|
||||
1 4 3
|
||||
5 2 6
|
||||
4 4 1
|
||||
100 100 20 20
|
||||
100 100 20 20
|
||||
4 4 5
|
||||
3 3 6
|
||||
2 363 711
|
||||
286 121 102
|
||||
1 1 1
|
||||
3 1 1
|
||||
1 2 0
|
||||
1 3 2
|
||||
0 1 0
|
||||
3 3 3
|
||||
14
codeforces/1043/io/2132e.1.cpout
Normal file
14
codeforces/1043/io/2132e.1.cpout
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
0
|
||||
70
|
||||
64
|
||||
39
|
||||
57
|
||||
2700000000
|
||||
4200000000
|
||||
420
|
||||
711
|
||||
711
|
||||
0
|
||||
997
|
||||
0
|
||||
1360
|
||||
31
codeforces/1043/io/2132f.1.cpin
Normal file
31
codeforces/1043/io/2132f.1.cpin
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
3
|
||||
3 3
|
||||
1 2
|
||||
2 3
|
||||
3 1
|
||||
1
|
||||
1
|
||||
5 4
|
||||
1 2
|
||||
2 3
|
||||
3 4
|
||||
4 5
|
||||
3
|
||||
1
|
||||
2
|
||||
3
|
||||
7 6
|
||||
1 2
|
||||
1 5
|
||||
2 3
|
||||
3 4
|
||||
5 7
|
||||
6 7
|
||||
7
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
3
codeforces/1043/io/2132f.1.cpout
Normal file
3
codeforces/1043/io/2132f.1.cpout
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
-1
|
||||
1 1 2
|
||||
2 2 2 2 2 5 5
|
||||
22
codeforces/1043/io/2132f.2.cpin
Normal file
22
codeforces/1043/io/2132f.2.cpin
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
2
|
||||
5 4
|
||||
4 2
|
||||
4 1
|
||||
5 1
|
||||
3 5
|
||||
5
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6 6
|
||||
1 2
|
||||
2 3
|
||||
3 4
|
||||
4 5
|
||||
5 2
|
||||
5 6
|
||||
2
|
||||
3
|
||||
4
|
||||
2
codeforces/1043/io/2132f.2.cpout
Normal file
2
codeforces/1043/io/2132f.2.cpout
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
3 3 3 3 3
|
||||
1 6
|
||||
21
codeforces/1043/io/2132g.1.cpin
Normal file
21
codeforces/1043/io/2132g.1.cpin
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
6
|
||||
2 3
|
||||
hey
|
||||
hey
|
||||
3 3
|
||||
abc
|
||||
def
|
||||
ghi
|
||||
3 2
|
||||
af
|
||||
fa
|
||||
te
|
||||
1 1
|
||||
x
|
||||
3 3
|
||||
uoe
|
||||
vbe
|
||||
mbu
|
||||
2 3
|
||||
hyh
|
||||
kop
|
||||
6
codeforces/1043/io/2132g.1.cpout
Normal file
6
codeforces/1043/io/2132g.1.cpout
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
4
|
||||
16
|
||||
2
|
||||
0
|
||||
11
|
||||
3
|
||||
Loading…
Add table
Add a link
Reference in a new issue