Submission #121240

# Submission time Handle Problem Language Result Execution time Memory
121240 2019-06-26T08:55:06 Z _7_7_ Fibonacci representations (CEOI18_fib) C++14
5 / 100
3754 ms 3416 KB
#include <bits/stdc++.h>                                           

#define int long long	
//#pragma GCC optimize("Ofast")
//#pragma comment(linker, "/stack:200000000")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4")

#define file(s) freopen(s".in","r",stdin); freopen(s".out","w",stdout);                                          
#define forev(i, b, a) for(int i = (b); i >= (a); --i)	    
#define forn(i, a, b) for(int i = (a); i <= (b); ++i)
#define sz(s) (int)s.size()
#define all(x) x.bg, x.en                                                                    
#define pb push_back
#define ppb pop_back
#define mp make_pair
#define rbg rbegin()
#define bg begin()
#define en end()
#define s second
#define f first                                               
	
   
using namespace std;                  
   
   
typedef pair < long long, long long > pll;    
typedef pair < int, int > pii;
typedef unsigned long long ull;         
typedef vector < pii > vpii;
typedef vector < int > vi;
typedef long double ldb; 
typedef long long ll;  
typedef double db;                            
						               
				
const int dx[] = {1, -1, 0, 0}, dy[] = {0, 0, 1, -1}, block = 265;	
const pii base = mp(1171, 3307), Mod = mp(1e9 + 7, 1e9 + 9);  
const int inf = 1e9, N = 2e3 + 11, mod = 1e9 + 7;
const db eps = 1e-12, pi = 3.14159265359; 
const ll INF = 1e18;	




int n, f[30], a[30];
map < int, int > res;


void precalc () {
	f[0] = f[1] = 1;
	forn (i, 1, 22)
		f[i] = f[i - 1] + f[i - 2];
}


main () {
	ios_base :: sync_with_stdio(0);
	cin.tie(0);                                        
	cout.tie(0);
	cin >> n;
	forn (i, 1, n)
		cin >> a[i];
	if (n <= 20) {
		precalc();
		forn (mask, 0, (1 << 21) - 1) {
		    int sum = 0;
			forn (j, 0, 21)
				if (mask & (1 << j))
					sum += f[j + 1];
			++res[sum];		
		}


		forn (i, 1, n) {
			a[i] = f[a[i]] + a[i - 1];
			cout << res[a[i]] << endl;
		}             
	}
	return 0;
}

Compilation message

fib.cpp:56:7: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main () {
       ^
# Verdict Execution time Memory Grader output
1 Correct 427 ms 3252 KB Output is correct
2 Correct 435 ms 3280 KB Output is correct
3 Correct 423 ms 3396 KB Output is correct
4 Correct 424 ms 3320 KB Output is correct
5 Correct 423 ms 3320 KB Output is correct
6 Correct 421 ms 3320 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 427 ms 3252 KB Output is correct
2 Correct 435 ms 3280 KB Output is correct
3 Correct 423 ms 3396 KB Output is correct
4 Correct 424 ms 3320 KB Output is correct
5 Correct 423 ms 3320 KB Output is correct
6 Correct 421 ms 3320 KB Output is correct
7 Incorrect 423 ms 3416 KB Output isn't correct
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 427 ms 3252 KB Output is correct
2 Correct 435 ms 3280 KB Output is correct
3 Correct 423 ms 3396 KB Output is correct
4 Correct 424 ms 3320 KB Output is correct
5 Correct 423 ms 3320 KB Output is correct
6 Correct 421 ms 3320 KB Output is correct
7 Incorrect 423 ms 3416 KB Output isn't correct
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3754 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 427 ms 3252 KB Output is correct
2 Correct 435 ms 3280 KB Output is correct
3 Correct 423 ms 3396 KB Output is correct
4 Correct 424 ms 3320 KB Output is correct
5 Correct 423 ms 3320 KB Output is correct
6 Correct 421 ms 3320 KB Output is correct
7 Incorrect 423 ms 3416 KB Output isn't correct
8 Halted 0 ms 0 KB -