misc files

This commit is contained in:
Barrett Ruth 2026-02-02 12:47:09 -05:00
parent 6cea7c9766
commit 390ffa1e1c
5 changed files with 234 additions and 0 deletions

View file

@ -36,6 +36,7 @@ template <typename T> constexpr T MAX = std::numeric_limits<T>::max();
void solve() {
u32 n, m, k;
string s;
cin >> n >> m >> k;
@ -49,6 +50,7 @@ void solve() {
cin >> b[i];
}
cin >> s;
}
int main() { // {{{