이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#include <bits/stdc++.h>
using namespace std;
#define dbgv(v) cout<<#v<<" = "; f(i,0,int(v.size())) cout<<v[i]<<" "; cout<<endl
#define dbga(a,x,y) cout<<#a<<" = "; f(i,x,y) cout<<a[i]<<" "; cout<<endl
#define erorp(x) cout<<#x<<"={"<<x.F<<" , "<<x.S<<"}"<<endl
#define eror(x) cout<<#x<<'='<<(x)<<endl
#define f_(i,a,b) for(int i=a;i>=b;i--)
#define f(i,a,b) for(int i=a;i<b;i++)
#define nb(x) __builtin_popcount(x)
#define all(v) v.begin(),v.end()
#define bit(n,k) (((n)>>(k))&1)
#define Add(x,y) x=(x+y)%mod
#define maxm(a,b) a=max(a,b)
#define minm(a,b) a=min(a,b)
#define lst(x) x[x.size()-1]
#define sz(x) int(x.size())
#define mp make_pair
#define ll long long
#define pb push_back
#define S second
#define F first
const int N=1e5+99;
int n,a[N],dp[N][2];
vector<pair<int,int>> g[N];
void dfs(int u){
vector<int> res(2),pes(2);
res[1]=a[u];
reverse(all(g[u]));
for(auto [v,w] : g[u]){
//cout<<u<<" -> "<<v<<" "<<w<<endl;
dfs(v);
fill(all(pes),0);
f(i,0,2){
f(b,0,2){
int task=w*b;
if(i==1 && bit(task,0)==1) continue ;
maxm(pes[i || bit(task,1)],res[i]+dp[v][b]);
}
}
res=pes;
}
dp[u][0]=res[0];
dp[u][1]=res[1];
//cout<<u<<" -> "<<dp[u][0]<<" "<<dp[u][1]<<endl;
}
int findSample(int _n,int confidence[],int host[],int protocol[]){
n=_n;
f(i,0,n) a[i]=confidence[i];
f(i,1,n){
g[host[i]].pb({i,protocol[i]+1});
}
dfs(0);
return max(dp[0][0],dp[0][1]);
}
컴파일 시 표준 에러 (stderr) 메시지
friend.cpp: In function 'void dfs(int)':
friend.cpp:33:11: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
33 | for(auto [v,w] : g[u]){
| ^
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |