Precreation contest files

This commit is contained in:
2026-02-11 11:28:23 +07:00
parent 0a8ea477bb
commit cb9f7cab30
134 changed files with 1848 additions and 0 deletions

23
misc/chuyen-de-xau/b6.cpp Normal file
View File

@@ -0,0 +1,23 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int p, k;
cin >> p >> k;
vector<int> a(p), s(p);
for (int &i : a)
cin >> i;
for (int &i : s)
cin >> i;
deque<int> stack;
for (int i = 0; i < p; i++) {
while (a[i]--) {
}
}
}