| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 592439 | dantoh000 | 기억 압축 (JOI15_memory) | C++14 | 2403 ms | 284168 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Memory_lib.h"
#include <bits/stdc++.h>
int Memory(int N, int M) {
	if (N <= 30){
		int idx = M&31;
		int flag = M>>5&1;
		int state = M>>6;
		if (idx > N) return 0;
		if (idx == N) return state==0?-1:-2;
		char ch = Get(idx+1);
		int type = (ch == '<' || ch == '>') ? 0 : 1;
		int open = (ch == '<' || ch == '[') ? 1 : 0;
		if (!open){
			if (state == 0) return -2;
			if (flag^(state&1) == type){
				state>>=1;
			}
			else return -2;
		}
		else{
			if (state >= 1<<16) return -2;
			state<<=1;
			if (state == 0){
				state = 1;
				flag = type^1;
			}
			else{
				state |= (flag^type);
			}
		}
		M = (state<<6)|(flag<<5)|(idx+1);
		return M>=4194304?0:M;
	}
	else{
		int idx = M&127;
		int ct = M>>7;
		if (idx > N) return 0;
		if (idx == N) return (ct==0)?-1:-2;
		char ch = Get(idx+1);
		if (ch == '<'){
			ct++;
		}
		else{
			if (ct == 0) return -2;
			ct--;
		}
		M = (ct<<7)|(idx+1);
		return M>=4194304?0:M;
	}
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
