This commit is contained in:
Zengtudor 2024-10-13 11:47:52 +08:00
parent 297e2b1912
commit ef679ab3c8
2 changed files with 18 additions and 0 deletions

17
src/P3957/P3957.cpp Normal file
View File

@ -0,0 +1,17 @@
#include <iostream>
#include <bitset>
using ll = unsigned long long;
auto &is = std::cin;
auto &os = std::cout;
const ll /*max_n = 5e5+5*/max_n = 500+5, max_d = 2e3+5, max_x = 1e9+5, max_k = 1e9+5;
ll n,d,k;
std::bitset<max_n> dp[max_d][max_n][max_n];
int main(){
is>>n>>d>>k;
}

View File

@ -73,4 +73,5 @@ int main(){
constexpr ull a {arr[size-1]};
const constexpr ull *p {arr};
std::cout<<NV(a)<<'\n'<<NV(p)<<'\n';
throw std::runtime_error("test");
}