Submission #967607

# Submission time Handle Problem Language Result Execution time Memory
967607 2024-04-22T13:46:41 Z Isam Superpozicija (COCI22_superpozicija) C++17
0 / 110
169 ms 604 KB
#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;
			
			for(register int i = 1; i <= n && flag; ++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]) 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

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:33:21: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   33 |    for(register int i = 1; i <= n && flag; ++i){
      |                     ^
Main.cpp:43:21: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   43 |    for(register int i = 0; i < (n << 1); ++i){
      |                     ^
Main.cpp:57:22: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   57 |     for(register int i = 0; i < n; ++i){
      |                      ^
# Verdict Execution time Memory Grader output
1 Incorrect 169 ms 596 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 604 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 169 ms 596 KB Output isn't correct
2 Halted 0 ms 0 KB -