# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
874444 | Maite_Morale | Collecting Stamps 3 (JOI20_ho_t3) | C++14 | 174 ms | 222060 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define F first
#define S second
#define MAX 205
#define oo 1e18
#define mod 1000000007
#define fast_in ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);cout.setf(ios::fixed);cout.precision(0);
using namespace std;
typedef long long ll;
#define pll pair<ll , ll>
#define vll vector<ll>
#define vvll vector<vll>
#define vpll vector<pll>
ll dp[MAX][410][MAX][5],a[410],t[410],n,m;
int main(){
fast_in
cin>>n>>m;a[n]=m;t[n]=0;
for(int i=0;i<n;i++){
cin>>a[i];a[i+n+1]=a[i]+m;
}
for(int i=0;i<n;i++){
cin>>t[i];t[i+n+1]=t[i];
}
for(int k=0;k<=n;k++)
for(int i=n;i>=0;i--)
for(int j=n;j<=i+n;j++)
dp[i][j][k][0]=dp[i][j][k][1]=-1;
dp[n][n][0][0]=dp[n][n][0][1]=0;
ll r=0;
# | 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... |