update
This commit is contained in:
parent
297e2b1912
commit
ef679ab3c8
17
src/P3957/P3957.cpp
Normal file
17
src/P3957/P3957.cpp
Normal 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;
|
||||||
|
|
||||||
|
}
|
@ -73,4 +73,5 @@ int main(){
|
|||||||
constexpr ull a {arr[size-1]};
|
constexpr ull a {arr[size-1]};
|
||||||
const constexpr ull *p {arr};
|
const constexpr ull *p {arr};
|
||||||
std::cout<<NV(a)<<'\n'<<NV(p)<<'\n';
|
std::cout<<NV(a)<<'\n'<<NV(p)<<'\n';
|
||||||
|
throw std::runtime_error("test");
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user