# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
476489 | keta_tsimakuridze | Snake Escaping (JOI18_snake_escaping) | C++14 | 582 ms | 65540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define f first
#define s second
////#define int long long
#define pii pair<int,int>
using namespace std;
const int N = 2e6 + 5, mod = 1e9 + 7; // !
int t,dp1[N][22],dp2[N][22],L,q;
vector<int> cnt[4];
main(){
ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0);
cin >> L >> q;
string s;
cin >> s;
for(int i = 0; i < (1 << L); i++) {
dp1[i][0] = s[i] - '0';
for(int j = 0; j < L; j++) {
if(j) dp1[i][j] = dp1[i][j - 1];
if((1 << j) & i) dp1[i][j] += dp1[i ^ (1 << j)][j];
}
}
for(int i = (1 << L) - 1; i >= 0; i--) {
dp2[i][0] = s[i] - '0';
for(int j = 0; j < L; j++) {
if(j) dp2[i][j] = dp2[i][j - 1];
if(!((1 << j) & i)) dp2[i][j] += dp2[i ^ (1 << j)][j];
}
}
while(q--) {
string t;
컴파일 시 표준 에러 (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... |