| Task: | Kortit II | 
| Sender: | DLPS | 
| Submission time: | 2024-10-29 19:12:45 +0200 | 
| Language: | C++ (C++20) | 
| Status: | READY | 
| Result: | 3 | 
| group | verdict | score | 
|---|---|---|
| #1 | ACCEPTED | 3 | 
| #2 | TIME LIMIT EXCEEDED | 0 | 
| #3 | TIME LIMIT EXCEEDED | 0 | 
| #4 | TIME LIMIT EXCEEDED | 0 | 
| #5 | TIME LIMIT EXCEEDED | 0 | 
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | 1, 2, 3, 4, 5 | details | 
| #2 | TIME LIMIT EXCEEDED | -- | 2, 3, 4, 5 | details | 
| #3 | TIME LIMIT EXCEEDED | -- | 3, 4, 5 | details | 
| #4 | TIME LIMIT EXCEEDED | -- | 4, 5 | details | 
| #5 | RUNTIME ERROR | 0.39 s | 5 | details | 
| #6 | RUNTIME ERROR | 0.38 s | 5 | details | 
Compiler report
input/code.cpp:1:25: warning: extra tokens at end of #include directive
    1 | #include "bits/stdc++.h";
      |                         ^
input/code.cpp: In function 'std::string Hash(int, std::vector<int>, std::vector<int>, int, int, int)':
input/code.cpp:26:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   26 |         for (int i = 0; i < aHand.size(); i++)
      |                         ~~^~~~~~~~~~~~~~
input/code.cpp:21:16: warning: unused variable 'returnHash' [-Wunused-variable]
   21 |         size_t returnHash = cards;
      |                ^~~~~~~~~~
input/code.cpp:36:22: warning: unused variable 'hasher' [-Wunused-variable]
   36 |         hash<string> hasher;
      |                      ^~~~~~
input/code.cpp: In function 'int EvaluateBranch(int, std::vector<int>, std::vector<int>, int, int, int)':
input/code.cpp:84:27: warning: comparison of integer expressions of...Code
#include "bits/stdc++.h";
#include <unordered_set>
using namespace std;
// Yhteisiä yhdelle testille.
int cardCount = 0;
int aTarget = 0;
int bTarget = 0;
int maxZeros = 0;
// Ei enään oikeasti hashejä
unordered_map<string, int> seenHashes;
string correctHash;
//Debug
int CALLS = 0;
string Hash(int cards, vector<int> aHand, vector<int> bHand, int aPoints, int bPoints, int zeros)
{
	size_t returnHash = cards;
	string hashString = to_string(cards);
	
	
	for (int i = 0; i < aHand.size(); i++)
	{
		hashString += to_string(aHand[i]);
		hashString += to_string(bHand[i]);
	}
	hashString += to_string(aPoints);
	hashString += to_string(bPoints);
	hashString += to_string(zeros);
	hash<string> hasher;
	//return hasher(hashString);
	return hashString;
}
// Ei lisää oikeaa hashiä
void AddHash(string hash, int count)
{
	if (hash != correctHash)
	{
		seenHashes.insert(pair<string, int>(hash, count));
	}
}
// Cards kuvaa montako korttia pelaajilla on jäljellä.
int EvaluateBranch(int cards, vector<int> aHand, vector<int> bHand, int aPoints, int bPoints, int zeros)
{
	CALLS++;
	// Ei kortteja jäljellä
	if (!(cards > 0))
	{
		if (aPoints == aTarget && bPoints == bTarget && zeros == maxZeros)
		{
			// Päivitetään oikea hash
			if (correctHash == "e")
			{
				correctHash = Hash(cards, aHand, bHand, aPoints, bPoints, zeros);
				seenHashes.erase(correctHash);
			}
			return 1;
		}
		else
		{
			return 0;
		}
	}
	// Onko joku maksimi ylitetty?
	if (aPoints > aTarget || bPoints > bTarget || zeros > maxZeros)
	{
		return 0;
	}
	int answer = 0;
	vector<vector<int>> newBHands;
	newBHands.reserve(bHand.size());
	for (int j = 0; j < bHand.size(); j++)
	{
		vector<int> newBHand = bHand;
		swap(newBHand[j], newBHand.back());
		newBHand.pop_back();
		newBHands.push_back(newBHand);
	}
	for (int i = 0; i < aHand.size(); i++)
	{
		vector<int> newAHand = aHand;
		swap(newAHand[i], newAHand.back());
		newAHand.pop_back();
		for (int j = 0; j < bHand.size(); j++)
		{
			int aPoint = 0;
			int bPoint = 0;
			int zero = 0;
			if (aHand[i] != bHand[j])
			{
				if (aHand[i] > bHand[j])
				{
					aPoint++;
				}
				else
				{
					bPoint++;
				}
			}
			else
			{
				zero++;
			}
			string currentHash = Hash(cards - 1, newAHand, newBHands[j], aPoints + aPoint, bPoints + bPoint, zeros + zero);
			if (!seenHashes.contains(currentHash))
			{
				int branchValue = EvaluateBranch(cards - 1, newAHand, newBHands[j], aPoints + aPoint, bPoints + bPoint, zeros + zero);
				answer += branchValue;
				
				AddHash(currentHash, branchValue);
			}
			else
			{
				answer += seenHashes.at(currentHash);
			}
			answer %= 1000000007;
		}
	}
	return answer;
}
void Evaluate(int n, int a, int b)
{
	cardCount = n;
	aTarget = a;
	bTarget = b;
	maxZeros = n - a - b;
	CALLS = 0;
	seenHashes.clear();
	// Ei voi olla koskaan e.
	correctHash = "e";
	if (a + b > n)
	{
		cout << "0\n";
		return;
	}
	vector<int> baseHand;
	for (int i = 0; i < n; i++)
	{
		baseHand.push_back(i + 1);
	}
	cout << EvaluateBranch(n, baseHand, baseHand, 0, 0, 0) << "\n";
	//cout << "Made " << CALLS << " evaluation calls\n";
}
int main()
{
	int testCount = 0;
	cin >> testCount;
	for (int i = 0; i < testCount; i++)
	{
		int n, a, b;
		cin >> n >> a >> b;
		Evaluate(n, a, b);
	}
}Test details
Test 1
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input | 
|---|
| 54 4 4 0 3 1 3 3 2 2 4 0 4 ...  | 
| correct output | 
|---|
| 0 0 0 0 0 ...  | 
| user output | 
|---|
| 0 0 0 0 0 ...  | 
Test 2
Group: 2, 3, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input | 
|---|
| 284 6 1 0 5 0 2 7 1 5 7 7 5 ...  | 
| correct output | 
|---|
| 0 0 35280 0 36720 ...  | 
| user output | 
|---|
| (empty) | 
Test 3
Group: 3, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input | 
|---|
| 841 19 3 12 19 19 13 19 7 13 20 11 15 ...  | 
| correct output | 
|---|
| 40291066 0 0 0 0 ...  | 
| user output | 
|---|
| (empty) | 
Test 4
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input | 
|---|
| 1000 15 12 6 7 1 6 44 4 26 6 6 5 ...  | 
| correct output | 
|---|
| 0 5040 494558320 0 340694548 ...  | 
| user output | 
|---|
| (empty) | 
Test 5
Group: 5
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 892 638 599 966 429 655 1353 576 1140 1403 381 910 ...  | 
| correct output | 
|---|
| 0 0 0 249098285 0 ...  | 
| user output | 
|---|
| 0 0 0  | 
Test 6
Group: 5
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 2000 1107 508 2000 1372 249 2000 588 65 2000 1739 78 ...  | 
| correct output | 
|---|
| 750840601 678722180 744501884 159164549 868115056 ...  | 
| user output | 
|---|
| (empty) | 
