답안 #101186

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
101186 2019-03-17T09:16:13 Z Pro_ktmr 기억 압축 (JOI15_memory) C++14
10 / 100
2896 ms 276820 KB
#include"Memory_lib.h"

int Memory(int N, int M){
    int roopCount = (M >> 15) % (1 << 7);
    int now = (M >> 8) % (1 << 7);
    int length = (M >> 1) % (1 << 7);
    int stack = (M >> 0) % (1 << 1);
    if(roopCount >= N || now >= N || length >= N) return 0;
    
    char c = Get(now+1);
    if(c == '<'){
        if(length == roopCount) stack = 0;
        length++;
    }
    if(c == '['){
        if(length == roopCount) stack = 1;
        length++;
    }
    if(c == '>'){
        length--;
        if(length == roopCount && stack != 0) return -2;
    }
    if(c == ']'){
        length--;
        if(length == roopCount && stack != 1) return -2;
    }

    now++;
    if(now == N){
        if(length != 0) return -2;
        roopCount++;
        now = 0;
        length = 0;
        stack = 0;
    }
    if(roopCount == N) return -1;
    return (roopCount<<15) | (now<<8) | (length<<1) | (stack<<0);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 2657 ms 276820 KB Output is correct
2 Correct 2410 ms 276648 KB Output is correct
3 Incorrect 2896 ms 276564 KB Wrong Answer [6]
# 결과 실행 시간 메모리 Grader output
1 Correct 2657 ms 276820 KB Output is correct
2 Correct 2410 ms 276648 KB Output is correct
3 Incorrect 2896 ms 276564 KB Wrong Answer [6]
# 결과 실행 시간 메모리 Grader output
1 Correct 2657 ms 276820 KB Output is correct
2 Correct 2410 ms 276648 KB Output is correct
3 Incorrect 2896 ms 276564 KB Wrong Answer [6]
# 결과 실행 시간 메모리 Grader output
1 Correct 2657 ms 276820 KB Output is correct
2 Correct 2410 ms 276648 KB Output is correct
3 Incorrect 2896 ms 276564 KB Wrong Answer [6]
# 결과 실행 시간 메모리 Grader output
1 Correct 2535 ms 276588 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2657 ms 276820 KB Output is correct
2 Correct 2410 ms 276648 KB Output is correct
3 Incorrect 2896 ms 276564 KB Wrong Answer [6]