# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
727858 | 2023-04-21T13:40:04 Z | Augustyn | Superpozicija (COCI22_superpozicija) | C++17 | 25 ms | 3796 KB |
#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>>,less<pair<int,int>>>dod1_OZ; priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>dod1_ZO; queue<int>dod2; 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; dod1_OZ.push({gdziedr[i],i}); } else { juzwyb[i]=t; juzwyb[gdziedr[i]]=-t; --ile; dod1_ZO.push({gdziedr[i],i}); } } else { if(juzwyb[i]==t) { if(naw[i]==')') { --ile; dod2.push(i); } else ++ile; } else { if(naw[i]=='(') dod2.push(gdziedr[i]); } } } if(ile<0) { while(!dod2.empty()) { if(juzwyb[dod2.front()]!=-t) break; dod2.pop(); } if(!dod2.empty()) { juzwyb[dod2.front()]=-t; juzwyb[gdziedr[dod2.front()]]=t; dod2.pop(); ile+=2; } else { while(!dod1_OZ.empty()) { if(juzwyb[dod1_OZ.top().second]!=t) break; dod1_OZ.pop(); } if(!dod1_OZ.empty()) { if(dod1_OZ.top().first<gdziedr[i]||naw[gdziedr[i]]==naw[i]) { juzwyb[dod1_OZ.top().second]=t; juzwyb[dod1_OZ.top().first]=-t; ++ile; dod1_OZ.pop(); } else { juzwyb[gdziedr[i]]=t; juzwyb[i]=-t; ++ile; } } else { while(!dod1_ZO.empty()) { if(juzwyb[dod1_ZO.top().second]==t) break; dod1_ZO.pop(); } if(dod1_ZO.empty()) { printf("-1\n"); return; } if(dod1_ZO.top().first<gdziedr[i]||naw[gdziedr[i]]==naw[i]) { juzwyb[dod1_ZO.top().second]=-t; juzwyb[dod1_ZO.top().first]=t; ++ile; dod1_ZO.pop(); } else { juzwyb[gdziedr[i]]=t; juzwyb[i]=-t; ++ile; } } } } } 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
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 25 ms | 1108 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 17 ms | 1192 KB | Output is correct |
2 | Correct | 21 ms | 1692 KB | Output is correct |
3 | Correct | 16 ms | 1876 KB | Output is correct |
4 | Correct | 18 ms | 2220 KB | Output is correct |
5 | Correct | 17 ms | 2388 KB | Output is correct |
6 | Correct | 11 ms | 2260 KB | Output is correct |
7 | Correct | 14 ms | 2676 KB | Output is correct |
8 | Correct | 17 ms | 3076 KB | Output is correct |
9 | Correct | 20 ms | 3488 KB | Output is correct |
10 | Correct | 24 ms | 3796 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 19 ms | 1244 KB | Output is correct |
3 | Correct | 20 ms | 1820 KB | Output is correct |
4 | Correct | 18 ms | 2096 KB | Output is correct |
5 | Correct | 20 ms | 2488 KB | Output is correct |
6 | Runtime error | 10 ms | 3412 KB | Execution killed with signal 6 |
7 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 25 ms | 1108 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |