Submission #967609

#TimeUsernameProblemLanguageResultExecution timeMemory
967609IsamSuperpozicija (COCI22_superpozicija)C++17
0 / 110
111 ms972 KiB
#include<bits/stdc++.h> using namespace std; constexpr int sz = 200002; int n, a[sz], b[sz]; string z; signed main(){ ios_base::sync_with_stdio(0); int T; cin >> T; function<void()> test_case = [](){ cin >> n >> z; for(register int i = 1; i <= n; ++i){ cin >> a[i] >> b[i]; a[i]--, b[i]--; } //assert(n<=10); for(register int mask = 0; mask < (1 << n); ++mask){ bool flag = true; int tot(0); bitset<22> chosen; chosen.set(); for(register int i = 1; i <= n; ++i){ if(mask & (1<<(i-1))){ chosen[b[i]] = true; }else{ chosen[a[i]] = true; } } for(register int i = 0; i < (n << 1); ++i){ if(chosen[i] == 1) tot += (z[i]=='('?1:-1); flag &= (tot>=0); } flag &= !tot; if(flag){ for(register int i = 0; i < n; ++i){ cout << (bool)(mask & (1 << i)) << " \n"[i==n-1]; } return; } } cout << -1 << '\n'; }; while(T--) test_case(); return 0; }

Compilation message (stderr)

Main.cpp: In lambda function:
Main.cpp:18:20: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   18 |   for(register int i = 1; i <= n; ++i){
      |                    ^
Main.cpp:25:20: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   25 |   for(register int mask = 0; mask < (1 << n); ++mask){
      |                    ^~~~
Main.cpp:35:21: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   35 |    for(register int i = 1; i <= n; ++i){
      |                     ^
Main.cpp:45:21: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   45 |    for(register int i = 0; i < (n << 1); ++i){
      |                     ^
Main.cpp:59:22: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   59 |     for(register int i = 0; i < n; ++i){
      |                      ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...