이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cstring>
#include <vector>
#define X first
#define Y second
#define PB push_back
using namespace std;
typedef long long ll;
typedef pair < int , int > pii;
typedef vector < int > vi;
const int N = 3e3 + 50;
const int MOD = 1e9 + 7;
inline int add(int A,int B){
if(A + B >= MOD) return A + B - MOD;
return A + B;
}
inline int mul(int A,int B){
return (ll)A * B % MOD;
}
inline int sub(int A,int B){
if(A - B < 0) return A - B + MOD;
return A - B;
}
int dp[N][N], n, k;
int f(int x,int y,int lst){
if(x == n) return (y == k);
if(dp[x][y] != -1) return dp[x][y];
int ret = 0;
for(int nxt = 0;nxt <= x;nxt++){
ret = add(ret, f(x + 1, y + (nxt <= lst), nxt));
}
return ret;
}
int main(){
memset(dp, -1, sizeof(dp));
scanf("%d%d", &n, &k);
printf("%d\n", f(0, 0, 0));
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
asceticism.cpp: In function 'int main()':
asceticism.cpp:46:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &n, &k);
~~~~~^~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |