답안 #29996

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
29996 2017-07-21T11:49:34 Z inqr 게임 (IOI13_game) C++14
0 / 100
13000 ms 33468 KB
#include "game.h"
#include <bits/stdc++.h>
#define pb push_back
#define mp make_pair
#define rt insert
#define st first
#define nd second
#define ll long long
#define DB printf("debug\n");
using namespace std;
long long g[2005][2005];
int r,c,q;
long long kok[10][320];

long long gcd2(long long X, long long Y) {
    long long tmp;
    while (X != Y && Y != 0) {
        tmp = X;
        X = Y;
        Y = tmp % Y;
    }
    return X;
}
void init(int R, int C){
    r=R;c=C,q=(int)(sqrt(C));
    for(int i=0;i<10;i++){
        for(int j=0;j<100000;j++){
            kok[i][j/q]=gcd2(kok[i][j/q],g[i][j]);
        }
    }
}
void update(int P, int Q, long long K){
    if(kok[P][Q/q]==g[P][Q]){
        g[P][Q]=K;
        kok[P][Q/q]=0;
        for(int i=Q/q*q;i<Q/q*q+q;i++){
            kok[P][Q/q]=gcd2(kok[P][Q/q],g[P][i]);
        }
    }
    g[P][Q]=K;
    kok[P][Q/q]=gcd2(kok[P][Q/q],g[P][Q]);
}
long long calculate2(int P, int Q, int U, int V) {
    long long ans=g[P][Q];
    for(int i=P;i<=U;i++){
        for(int j=Q;j<=V;j++){
            ans=gcd2(ans,g[i][j]);
        }
    }
    return ans;
}
long long calculate3(int P, int Q, int U, int V) {
    long long ans=g[P][Q];
    for(int i=P;i<=U;i++){
        for(int j=Q;j<=V;j++){
            if(j+q<=V){
                ans=gcd2(ans,kok[i][j/q]);
                j+=q-1;
            }
            else ans=gcd2(ans,g[i][j]);
        }
    }
    return ans;
}
long long calculate(int P, int Q, int U, int V) {
    if(r<=100 and c<=100)return calculate2(P,Q,U,V);
    else if(r<=10 and c<=100000) return calculate3(P,Q,U,V);
}

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;
      ^
game.cpp: In function 'long long int calculate(int, int, int, int)':
game.cpp:68:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
game.cpp: In function 'void init(int, int)':
game.cpp:28:29: warning: iteration 2005u invokes undefined behavior [-Waggressive-loop-optimizations]
             kok[i][j/q]=gcd2(kok[i][j/q],g[i][j]);
                             ^
game.cpp:27:22: note: containing loop
         for(int j=0;j<100000;j++){
                      ^
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 33468 KB Output is correct
2 Incorrect 3 ms 33468 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 33468 KB Output is correct
2 Correct 3 ms 33468 KB Output is correct
3 Correct 6 ms 33468 KB Output is correct
4 Execution timed out 13000 ms 33468 KB Execution timed out
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 33468 KB Output is correct
2 Incorrect 3 ms 33468 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 33468 KB Output is correct
2 Incorrect 3 ms 33468 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 33468 KB Output is correct
2 Incorrect 6 ms 33468 KB Output isn't correct
3 Halted 0 ms 0 KB -