feat(DP): new dp problems formated

This commit is contained in:
2025-11-04 21:14:50 -03:00
parent 669c13147b
commit 3b03c32703
925 changed files with 30660 additions and 0 deletions

15
flowers/src/validator.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "testlib.h"
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char* argv[]) {
registerValidation(argc, argv);
inf.readInt(1, 1e4, "n");
inf.readSpace();
inf.readInt(1, 1000, "m");
inf.readEoln();
inf.readEof();
return 0;
}