Submission #345763

# Submission time Handle Problem Language Result Execution time Memory
345763 2021-01-08T03:16:25 Z Marlov Sails (IOI07_sails) C++14
25 / 100
1000 ms 65540 KB
/*
Code by @marlov       
*/
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <iomanip>
#include <utility>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <stack>
#include <queue>
#include <iterator>
#include <bitset>
using namespace std;
typedef long long ll;
typedef pair<long long,long long> ii;

#define maxV 100005
#define INF 1000000000

long long N;
long long H[maxV];
long long K[maxV];
long long maxH=0;
long long ts[maxV];
long long result=INF;

void solve(long long n){
	if(n==N){
		long long cv=0;
		/*
		for(long long i=0;i<maxH;i++){
			cout<<ts[i]<<" ";
		}
		cout<<'\n';
		*/
		for(long long i=0;i<maxH;i++){

			cv+=((ts[i])*(ts[i]-1))/2;
		}
		//cout<<"pv:"<<cv<<'\n';
		result=min(result,cv);
		return;
	}
	long long cl[H[n]];
	for(long long i=0;i<H[n]-K[n];i++){
		cl[i]=0;
	}
	for(long long i=H[n]-K[n];i<H[n];i++){
		cl[i]=1;
	}
	do{
		for(long long i=0;i<H[n];i++){
			if(cl[i]==1) ts[i]++;
		}
		solve(n+1);
		for(long long i=0;i<H[n];i++){
			if(cl[i]==1) ts[i]--;
		}
	}while(next_permutation(cl,cl+H[n]));
	return;
}

int main() {
	ios_base::sync_with_stdio(0); cin.tie(0);
	cin>>N;
	for(long long i=0;i<N;i++){
		cin>>H[i]>>K[i];
		maxH=max(maxH,H[i]);
	}
	solve(0);
	cout<<result<<'\n';
    return 0;
}

/* stuff you should look for
	* long long overflow, array bounds
	* special cases (n=1,n=0?)
	* do smth instead of nothing and stay organized
*/
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 10 ms 364 KB Output is correct
2 Correct 3 ms 364 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 7 ms 364 KB Output is correct
2 Correct 44 ms 364 KB Output is correct
# Verdict Execution time Memory Grader output
1 Execution timed out 1083 ms 492 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1075 ms 40556 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 49 ms 65536 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 52 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Runtime error 58 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Runtime error 64 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 63 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 63 ms 65536 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -