Submission #1026678

# Submission time Handle Problem Language Result Execution time Memory
1026678 2024-07-18T09:12:16 Z AKaan37 Netrpeljivost (COI23_netrpeljivost) C++17
0 / 100
3 ms 4696 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long lo; 

#define fi first
#define se second
#define endl "\n"
#define pb push_back
#define int long long
#define fio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define FOR for(int i=1;i<=n;i++)
#define mid ((start+end)/2)
#define ort ((bas+son)/2)
#define _ << " " <<

const lo inf = 1000000000000000000;
const lo li = 2050;
const lo mod = 1000000007;

int n,m,a[li][li],k,flag,t,p[li],l[li],r[li];
int cev;
string s;
vector<int> v;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

inline void dfs(int node,int start,int end,int mask){
	if(start==end){return ;}
	dfs(node*2,start,mid,mask),dfs(node*2+1,mid+1,end,mask);
	if(mask&(1<<node)){
		swap(l[node*2+1],l[node*2]);
		swap(r[node*2+1],r[node*2]);
	}
	//~ cout<<l[node*2+1] _ r[node*2] _ node _ start _ end<<endl;
	cev+=a[l[node*2+1]][r[node*2]];
	l[node]=l[node*2];
	r[node]=r[node*2+1];
}

int32_t main(void){
	fio();
	cin>>n;
	FOR{
		for(int j=1;j<=n;j++)cin>>a[i][j];
		l[i+n-1]=i,r[i+n-1]=i;
	}
	int mn=inf;
	for(int i=1;i<=10000;i++){l[i+n-1]=i,r[i+n-1]=i;cev=0;dfs(1,1,n,i);mn=min(mn,cev);}
	cout<<mn<<endl;
	return 0;
}
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 4696 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 4696 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 4696 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 4696 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -