Submission #39162

# Submission time Handle Problem Language Result Execution time Memory
39162 2018-01-09T16:49:35 Z faustaadp Game (IOI13_game) C++14
0 / 100
0 ms 1840 KB
#include "game.h"
#include<bits/stdc++.h>
#define ll long long
#define pb push_back
#define mp make_pair
#define fi first
#define se second
using namespace std;
long long fpb(long long X, long long Y) {
    long long tmp;
    while (X != Y && Y != 0) {
        tmp = X;
        X = Y;
        Y = tmp % Y;
    }
    return X;
}
ll n,m,st[101][404040],hz,i;
void un(ll aa,ll bb,ll cc,ll dd,ll ee,ll ff)
{
	if(aa==bb)
		st[ff][ee]=dd;
	else
	{
		ll ce=(aa+bb)/2;
		if(cc<=ce)
			un(aa,ce,cc,dd,ee*2,ff);
		else
			un(ce+1,bb,cc,dd,ee*2+1,ff);
		st[ff][ee]=fpb(st[ff][ee*2],st[ff][ee*2+1]);
	}
}
ll hn(ll aa,ll bb,ll cc,ll dd,ll ee,ll ff)
{
	if(dd<aa||bb<cc)
		return 0;
	else
	if(cc<=aa&&bb<=dd)
		return st[ff][ee];
	else
	{
		ll ce=(aa+bb)/2;
		return fpb(hn(aa,ce,cc,dd,ee*2,ff),hn(ce+1,bb,cc,dd,ee*2+1,ff));
	}
}
void init(int R, int C) {
	n=R;
	m=C;
}

void update(int P, int Q, long long K) {
	un(0,m-1,Q,K,1,P);
}

long long calculate(int P, int Q, int U, int V) {
	hz=0;
	for(i=P;i<=U;i++)
		hz=fpb(hz,hn(0,m-1,Q,V,1,i));
    return hz;
}

Compilation message

grader.c: In function 'int main()':
grader.c:18:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
  int res;
      ^
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 1840 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 Runtime error 0 ms 1840 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 Runtime error 0 ms 1840 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 Runtime error 0 ms 1840 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 Runtime error 0 ms 1840 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -