# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
45550 | fallingstar | Boat (APIO16_boat) | C++17 | 1148 ms | 6464 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
Problem: Boat
Source: APIO 2016 problem 1
*/
#include <iostream>
#include <algorithm>
#define long long long
using namespace std;
const int N = 500 + 2;
const int MOD = 1e9 + 7;
int Mul(int a, int b) { return (long) a * b % MOD; }
void Add(int &a, int b) { a += b; if (a >= MOD) a -= MOD; }
int Sum(int a, int b) { Add(a, b); return a; }
void Sub(int &a, int b) { a -= b; if (a < 0) a += MOD; }
int Pow(int x, int n)
{
if (n == 1) return x;
int t = Pow(x, n / 2); t = Mul(t, t);
return n & 1 ? Mul(t, x) : t;
}
int n, a[N], b[N];
int m, p[N * 2]; // left and right ends of ranges
int c[N][N]; // c[i][j] = choose j from i
int g[N * 2][N];
# | 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... |