Submission #828486

# Submission time Handle Problem Language Result Execution time Memory
828486 2023-08-17T10:24:32 Z tolbi Simurgh (IOI17_simurgh) C++17
0 / 100
1 ms 428 KB
#include <bits/stdc++.h>
using namespace std;
#define coutarr(x) for (auto &it : x) cout<<it<<" ";cout<<endl;
#define coutara(x,y) for (auto &it : x) cout<<it<<" ";cout<<y<<endl;
#include "simurgh.h"
int ask(set<int> &st){
	vector<int> askarr;
	auto it = st.begin();
	while (it!=st.end()){
		askarr.push_back(*it);
		it++;
	}
	int ans = count_common_roads(askarr);
	//coutara(askarr,ans);
	return ans;
}
vector<int> find_roads(int n, vector<int> u, vector<int> v) {
	vector<vector<int>> arr(n);
	int m = u.size();
	map<pair<int,int>,int> mp;
	for (int i = 0; i < m; i++){
		arr[u[i]].push_back(v[i]);
		arr[v[i]].push_back(u[i]);
		mp[{u[i],v[i]}]=i;
	}
	auto getindex = [&](pair<int,int> pr){
		if (mp.count(pr)) return mp[pr];
		swap(pr.first,pr.second);
		return mp[pr];
	};
	vector<int> par(n);
	vector<bool> vis(n,false);
	set<int> askarr;
	vector<int> dept(n);
	vector<int> origset;
	auto dfs = [&](int node, auto dfs)->void{
		vis[node]=true;
		for (int i = 0; i < arr[node].size(); i++){
			if (vis[arr[node][i]]) continue;
			par[arr[node][i]]=node;
			dept[arr[node][i]]=dept[node]+1;
			askarr.insert(getindex({node,arr[node][i]}));
			origset.push_back(getindex({node,arr[node][i]}));
			dfs(arr[node][i],dfs);
		}
	};
	dept[0]=0;
	dfs(0,dfs);
	int origans = ask(askarr);
	vector<int> hueh(m,1);
	for (int i = 0; i < m; i++){
		if (askarr.find(i)!=askarr.end()) continue;
		int a = u[i];
		int b = v[i];
		vector<int> yep;
		vector<int> nop;
		vector<int> idk;
		int art=0, azal=0, kal=0;
		bool yesb=false;
		while (a!=b){
			if (dept[a]<dept[b]) swap(b,a);
			askarr.erase(getindex({a,par[a]}));
			askarr.insert(i);
			int crnum = ask(askarr);
			if (crnum>origans){
				nop.push_back(getindex({a,par[a]}));
				yesb=true;
			}
			else if (crnum<origans){
				yep.push_back(getindex({a,par[a]}));
			}
			else {
				idk.push_back(getindex({a,par[a]}));
			}
			askarr.erase(i);
			askarr.insert(getindex({a,par[a]}));
			a=par[a];
		}
		if (yesb==true){
			while (idk.size()){
				yep.push_back(idk.back());
				idk.pop_back();
			}
		}
		else {
			while (idk.size()){
				nop.push_back(idk.back());
				idk.pop_back();
			}
		}
		if (yesb) hueh[i]=2;
		else hueh[i]=0;
		while (nop.size()){
			hueh[nop.back()]=0;
			nop.pop_back();
		}
		while (yep.size()){
			hueh[yep.back()]=2;
			yep.pop_back();
		}
	}
	vector<int> final;
	for (int i = 0; i < m; i++){
		assert(hueh[i]!=1);
		if (hueh[i]==2) final.push_back(i);
	}
	//coutarr(final);
	return final;
}//wa

Compilation message

simurgh.cpp: In function 'std::vector<int> find_roads(int, std::vector<int>, std::vector<int>)':
simurgh.cpp:58:7: warning: unused variable 'art' [-Wunused-variable]
   58 |   int art=0, azal=0, kal=0;
      |       ^~~
simurgh.cpp:58:14: warning: unused variable 'azal' [-Wunused-variable]
   58 |   int art=0, azal=0, kal=0;
      |              ^~~~
simurgh.cpp:58:22: warning: unused variable 'kal' [-Wunused-variable]
   58 |   int art=0, azal=0, kal=0;
      |                      ^~~
simurgh.cpp: In instantiation of 'find_roads(int, std::vector<int>, std::vector<int>)::<lambda(int, auto:23)> [with auto:23 = find_roads(int, std::vector<int>, std::vector<int>)::<lambda(int, auto:23)>]':
simurgh.cpp:48:11:   required from here
simurgh.cpp:38:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   38 |   for (int i = 0; i < arr[node].size(); i++){
      |                   ~~^~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB correct
2 Correct 1 ms 212 KB correct
3 Correct 1 ms 212 KB correct
4 Correct 1 ms 212 KB correct
5 Correct 0 ms 212 KB correct
6 Correct 1 ms 308 KB correct
7 Runtime error 1 ms 340 KB Execution killed with signal 6
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB correct
2 Correct 1 ms 212 KB correct
3 Correct 1 ms 212 KB correct
4 Correct 1 ms 212 KB correct
5 Correct 0 ms 212 KB correct
6 Correct 1 ms 308 KB correct
7 Runtime error 1 ms 340 KB Execution killed with signal 6
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB correct
2 Correct 1 ms 212 KB correct
3 Correct 1 ms 212 KB correct
4 Correct 1 ms 212 KB correct
5 Correct 0 ms 212 KB correct
6 Correct 1 ms 308 KB correct
7 Runtime error 1 ms 340 KB Execution killed with signal 6
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 428 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB correct
2 Correct 1 ms 212 KB correct
3 Correct 1 ms 212 KB correct
4 Correct 1 ms 212 KB correct
5 Correct 0 ms 212 KB correct
6 Correct 1 ms 308 KB correct
7 Runtime error 1 ms 340 KB Execution killed with signal 6
8 Halted 0 ms 0 KB -