Submission #45026

#TimeUsernameProblemLanguageResultExecution timeMemory
45026rkocharyanAsceticism (JOI18_asceticism)C++14
4 / 100
3 ms932 KiB
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <fstream> #include <iomanip> #include <algorithm> #include <iterator> #include <memory> #include <numeric> #include <functional> #include <sstream> #include <queue> #include <deque> #include <list> #include <vector> #include <stack> #include <set> #include <unordered_set> #include <map> #include <unordered_map> #include <bitset> #include <tuple> #include <string> #include <cstring> #include <cmath> #include <cstdio> #include <cassert> #include <climits> #include <ctime> using namespace std; #define rep(i, x, y) for(int i = x; i <= y; ++i) #define mp make_pair #define add push_back #define sz(x) (int)(x).size() #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define mem(a,b) memset(a, b, sizeof(a)) #pragma warning(disable:4996) #pragma comment(linker, "/STACK:20000007") #pragma GCC optimize("unroll-loops") typedef long long ll; typedef unsigned long long ull; typedef double db; typedef long double ld; typedef pair <int, int> pii; typedef vector <int> lnum; const int N = (int)1e6 + 100; const int maxn = (int)1e3 + 100; const int base = (int)1e9; const int mod = (int)1e9 + 7; const int inf = INT_MAX; const long long ll_inf = LLONG_MAX; const long double pi = acos((long double)-1.0); const long double eps = 1e-8; int dp[3003][3003] = { 0 }; void solve() { int n, k; cin >> n >> k; dp[1][1] = 1; for (int i = 1; i <= n; ++i) { for (int j = 1; j <= k; ++j) { if (i == 1 && j == 1) continue; dp[i][j] = j * dp[i - 1][j] + (i - j + 1) * dp[i - 1][j - 1]; dp[i][j] %= mod; } } cout << dp[n][k] << '\n'; } int main() { //ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr); //#define Freopen #ifdef Freopen #ifndef _MSC_VER #define TASK "" freopen(TASK".in", "r", stdin); freopen(TASK".out", "w", stdout); #endif #endif int T = 1; //scanf("%d", &T); for (; T; --T) solve(); #ifdef DEBUG cerr << double(1.0 * clock() / CLOCKS_PER_SEC) << '\n'; #endif return 0; }

Compilation message (stderr)

asceticism.cpp:38:0: warning: ignoring #pragma warning  [-Wunknown-pragmas]
 #pragma warning(disable:4996)
 
asceticism.cpp:39:0: warning: ignoring #pragma comment  [-Wunknown-pragmas]
 #pragma comment(linker, "/STACK:20000007")
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...