이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#ifndef SKY
#include "Azer.h"
#endif // SKY
using namespace std;
#define N 2010
#define ll long long
#define ii pair<int,int>
#define fs first
#define sc second
#define pb push_back
int id=2,m,n,dem=0,edge[N][5],dp[N],ktr[N];
vector<ii>g[N];
#ifdef SKY
void SendA(bool y)
{
cout<<y<<endl;
}
#endif // SKY
void InitA(int cc, int A, vector<int> U, vector<int> V, vector<int> C)
{
n=cc;
for(int i=0;i<A;i++)
{
int u=U[i],v=V[i],L=C[i];
g[u].pb({L,v});
g[v].pb({L,u});
//cout<<u<<" "<<v<<" "<<L<<endl;
}
}
void ReceiveA(bool x)
{
if(dem<11)
{
if(x==1)
m+=(1<<(dem));
}else
{
if(dem%11==0)
id=(id+1)%3;
if(x==1)
edge[(dem-11)/33][id]+=(1<<(dem%11));
}
dem++;
}
vector<int> Answer()
{
for(int i=0;i<m;i++)
{
int u=edge[i][0],v=edge[i][1],L=edge[i][2];
g[u].pb({L,v});
g[v].pb({L,u});
}
priority_queue<ii>s;
memset(dp,0x3f3f,sizeof(dp));
dp[0]=0;
s.push({0,0});
while(!s.empty())
{
ii cc=s.top();
s.pop();
int u=cc.sc,L=-cc.fs;
if(ktr[u]==1)
continue;
ktr[u]=0;
for(auto v:g[u])
if(dp[v.sc]>L+v.fs)
{
dp[v.sc]=L+v.fs;
s.push({-dp[v.sc],v.sc});
}
}
vector<int> ans(n);
for(int i=0;i<n;i++)
ans[i]=dp[i];
return ans;
}
#ifdef SKY
int main()
{
freopen("Azer.inp","r",stdin);
freopen("Azer.out","w",stdout);
int n,A;
vector<int>U,V,C;
cin>>n>>A;
for(int i=0;i<A;i++)
{
int u,v,c;
cin>>u>>v>>c;
U.pb(u);
V.pb(v);
C.pb(c);
}
InitA(n,A,U,V,C);
for(int i=0;i<143;i++)
{
int x;
cin>>x;
ReceiveA(x);
}
vector<int>ans=Answer();
for(int i=0;i<n;i++)cout<<ans[i]<<endl;
}
#endif // SKY
#include<bits/stdc++.h>
#ifndef SKY
#include "Baijan.h"
#endif // SKY
using namespace std;
#define N 2010
#define ll long long
#define ii pair<int,int>
#define fs first
#define sc second
#define pb push_back
int n,dp[N],ktr[N];
vector<ii>g[N];
#ifdef SKY
void SendB(bool y)
{
cout<<y<<endl;
}
#endif // SKY
void InitB(int cc, int A, vector<int> U, vector<int> V, vector<int> C)
{
n=cc;
for(int i=0;i<11;i++)
SendB((A>>i)&1);
for(int i=0;i<A;i++)
{
int u=U[i],v=V[i],L=C[i];
g[u].pb({L,v});
g[v].pb({L,u});
for(int i=0;i<11;i++)
SendB((u>>i)&1);
for(int i=0;i<11;i++)
SendB((v>>i)&1);
for(int i=0;i<11;i++)
SendB((L>>i)&1);
//cout<<u<<" "<<v<<" "<<L<<endl;
}
/*priority_queue<ii>s;
memset(dp,0x3f3f,sizeof(dp));
dp[0]=0;
s.push({0,0});
while(!s.empty())
{
ii cc=s.top();
s.pop();
int u=cc.sc,L=-cc.fs;
if(ktr[u]==1)
continue;
ktr[u]=0;
for(auto v:g[u])
if(dp[v.sc]>L+v.fs)
{
dp[v.sc]=L+v.fs;
s.push({-dp[v.sc],v.sc});
}
}*/
}
void ReceiveB(bool x)
{
}
#ifdef SKY
int main()
{
freopen("Baijan.inp","r",stdin);
freopen("Baijan.out","w",stdout);
int n,A;
vector<int>U,V,C;
cin>>n>>A;
for(int i=0;i<A;i++)
{
int u,v,c;
cin>>u>>v>>c;
U.pb(u);
V.pb(v);
C.pb(c);
}
InitB(n,A,U,V,C);
}
#endif // SKY
컴파일 시 표준 에러 (stderr) 메시지
Azer.cpp: In function 'std::vector<int> Answer()':
Azer.cpp:81:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
81 | for(int i=0;i<n;i++)
| ^~~
Azer.cpp:83:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
83 | return ans;
| ^~~~~~
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |