| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 835114 | kwongweng | Cookies (JOI23_cookies) | C++17 | 2 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef vector<ii> vii;
typedef long double ld;
typedef pair<ll, ll> pll;
#define FOR(i, a, b) for(int i = a; i < b; i++)
#define ROF(i, a, b) for(int i = a; i >= b; i--)
#define ms memset
#define pb push_back
#define fi first
#define se second
void solve(){
int n; cin>>n;
vi a(n); FOR(i,0,n) cin>>a[i];
int m; cin>>m;
vi b(m); FOR(i,0,m) cin>>b[i];
int S=0; FOR(i,0,n) S += a[i];
if (S==n){
//subtask 1
vi dp(n+1,-1); dp[0]=0;
vi pre(n+1,-1);
FOR(i,0,m){
FOR(j,b[i],n+1){
if (dp[j-b[i]]==-1) continue;
if (dp[j]==-1 || dp[j]>dp[j-b[i]]+1){
dp[j]=dp[j-b[i]]+1; pre[j]=b[i];
}
}
}
cout<<dp[n]<<"\n";
if (dp[n]==-1) return;
int cur=n;
while (cur>0){
int sz = pre[cur];
cout<<sz;
FOR(i,cur-sz+1,cur+1) cout<<" "<<i;
cout<<"\n";
cur-=sz;
}
return;
}
}
int main(){
//MOD=MOD1;
ios::sync_with_stdio(false);
if (fopen("input.txt", "r")) {
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
}
int TC = 1;
//cin >> TC;
FOR(i, 1, TC+1){
//cout << "Case #" << i << ": ";
solve();
}
return 0;
}컴파일 시 표준 에러 (stderr) 메시지
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
