CSES - Datatähti 2017 loppu - Results
Submission details
Task:Sukujuhla
Sender:Kuha
Submission time:2017-01-22 12:00:38 +0200
Language:C++
Status:COMPILE ERROR

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:28:10: error: reference to 'hash' is ambiguous
   v[i] = hash(v[i]);
          ^
input/code.cpp:18:5: note: candidates are: int hash(int)
 int hash (int n) {
     ^
In file included from /usr/include/c++/4.8/bits/basic_string.h:3033:0,
                 from /usr/include/c++/4.8/string:52,
                 from /usr/include/c++/4.8/bits/locale_classes.h:40,
                 from /usr/include/c++/4.8/bits/ios_base.h:41,
                 from /usr/include/c++/4.8/ios:42,
                 from /usr/include/c++/4.8/istream:38,
                 from /usr/include/c++/4.8/sstream:38,
                 from /usr/include/c++/4.8/complex:45,
                 from /usr/include/c++/4.8/ccomplex:38,
                 from /usr/include/x86_64-linux-gnu/c++/4.8/bits/stdc++.h:52,
                 from input/code.cpp:1:
/usr/include/c++/4.8/bits/functional_hash.h:58:12: note:                 template<class _Tp> struct std::hash
     struct hash;...

Code

#include <bits/stdc++.h>

#define N (1<<18)
#define ll long long
#define ld long double
#define M 1000000007
#define INF 1000000007
#define LINF 1000000000000000007LL
#define pii pair<int, int>
#define pll pair<long long, long long>
#define pb push_back
#define F first
#define S second
#define L length() - 1

using namespace std;

int hash (int n) {
	return (rand() + n) % 3;
}

int main () {
	int n, m, k;
	cin>>n>>m>>k;
	int v[2 * k + 1];
	for (int i = 0; i < 2 * k + 1; i++) {
		cin>>v[i];
		v[i] = hash(v[i]);
	}
	for (int i = 0; i <= k; i++) {
		while (v[i] == v[i + 1] || v[i + 1] == v[i + 2]) {
			v[i + 1] = (v[i + 1] + 1) % 3;
		}
	}
	cout<<v[k] + 1<<endl;
}