이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std ;
#define pb push_back
typedef vector < int > vi ;
#include "coins.h"
vi coin_flips ( vi b , int c ) {
int row = -1 , column = -1 ;
for ( int i = 0 ; i < 8 ; i ++ ) {
for ( int j = 0 ; j < 8 ; j ++ ) {
if ( i * 8 + j == c ) {
row = i ;
column = j ;
break ;
}
}
}
vi flips ;
for ( int i = 0 ; i < 3 ; i ++ ) {
int on = ( ( row & ( 1 << i ) ) > 0 ) ;
if ( b [i] != on ) {
flips .pb ( i ) ;
}
}
for ( int i = 3 ; i < 6 ; i ++ ) {
int on = ( ( column & ( 1 << ( i - 3 ) ) ) > 0 ) ;
if ( b [i] != on ) {
flips .pb ( i ) ;
}
}
return flips ;
}
int find_coin ( vi b ) {
int row = 0 , column = 0 ;
for ( int i = 0 ; i < 3 ; i ++ ) {
if ( b [i] == 1 ) {
row |= ( 1 << i ) ;
}
}
for ( int i = 3 ; i < 6 ; i ++ ) {
if ( b [i] == 1 ) {
column |= ( 1 << ( i - 3 ) ) ;
}
}
return row * 8 + column ;
}
# | 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... |