# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
730705 | Augustyn | Superpozicija (COCI22_superpozicija) | C++17 | 31 ms | 2800 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<iostream>
#include<vector>
#include<queue>
using namespace std;
char *naw;
vector<pair<int,int>>ab;
vector<int>juzwyb,gdziedr;
int t,n;
void rozw()
{
scanf("%d",&n);
priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>dod;
delete[] naw;
naw = new char[n<<1];
ab.resize(n);
juzwyb.resize(n<<1);
gdziedr.resize(n<<1);
scanf("%s",naw);
for(int i=0;i<n;++i)
{
scanf("%d%d",&ab[i].first,&ab[i].second);
--ab[i].first;
--ab[i].second;
gdziedr[ab[i].first]=ab[i].second;
gdziedr[ab[i].second]=ab[i].first;
}
int ile=0;
for(int i=0;i<2*n;++i)
{
if(naw[gdziedr[i]]==naw[i])
{
if(naw[i]=='('&&i<gdziedr[i])
{
juzwyb[i]=t;
juzwyb[gdziedr[i]]=-t;
++ile;
}
else if(naw[i]==')'&&i>gdziedr[i])
{
juzwyb[i]=t;
juzwyb[gdziedr[i]]=-t;
--ile;
}
}
else
{
if(juzwyb[i]!=-t&&juzwyb[i]!=t)
{
if(naw[i]=='(')
{
juzwyb[i]=-t;
juzwyb[gdziedr[i]]=t;
dod.push({gdziedr[i],i});
}
else
{
juzwyb[i]=t;
juzwyb[gdziedr[i]]=-t;
--ile;
dod.push({gdziedr[i],i});
}
}
else
{
if(juzwyb[i]==t)
{
if(naw[i]==')')
--ile;
else
++ile;
}
}
}
if(ile<0)
{
if(dod.empty())
{
printf("-1\n");
return;
}
juzwyb[dod.top().second]*=-1;
juzwyb[dod.top().first]*=-1;
++ile;
if(max(dod.top().first,dod.top().second)<=i)
++ile;
dod.pop();
}
}
if(ile!=0)
{
printf("-1\n");
return;
}
for(int i=0;i<n;++i)
{
if(juzwyb[ab[i].first]==t)
printf("0 ");
else
printf("1 ");
}
printf("\n");
}
int main()
{
scanf("%d",&t);
while(t)
{
rozw();
--t;
}
}
Compilation message (stderr)
# | 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... |