답안 #496023

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
496023 2021-12-20T12:06:10 Z ktkerem Sob (COCI19_sob) C++17
10 / 110
55 ms 3844 KB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef __int128 vll;
typedef unsigned __int128 uvll;
ll _i=0;
#define ffn(x) _i=x
#define llll pair<ll , ll>
#define stitr set<ll>::iterator
#define fora(y,x) for(ll y=_i;x>y;y++)
#define pb push_back
#define pf push_front
#define debu cout << "hello\n"
#define fi first
#define sec second
#define all(a) a.begin() , a.end()
const ll limit = 1e13 + 7; 
const ll ous=1e5 + 5;
const ll dx[4] = {0 , -1 , 1 , 0} , dy[4] = {1,0,0,-1};
void solve(){
    ll n , m;cin >> n >> m;
    ll z =m+(n-1);
    vector<ll> dt;
    //cout << z << "\n";
    ll y = 1;
    for(ll i = 0;32>i;i++ , y*=2){
        //cout << y << "\n";
        dt.pb(y);
    }
    y = dt.size();
    fora(i,n){
        bitset<64> bt;
        fora(i,64){
            bt[i] = 0;
        }
        ll opt = i;
        for(ll j = y-1;0<=j;j--){
            if(opt >= dt[j]){
                bt[j] = 1;
                opt-=dt[j];
            }
        }
        opt= i;
        for(ll j = y-1;0<=j && opt < m;j--){
            if(bt[j] == 0 && (dt[j] + opt) <= z){
                opt+=dt[j];
            }
        }
        ll uy = i & opt;
        cout << i << " " << opt << "\n";
    }
    return;/**/
}
signed main(){
    ios_base::sync_with_stdio(false);cin.tie(NULL);
    ll t=1;
    //cin >> t;
    while(t--){
        solve();
    }
    return 0; 
}

Compilation message

sob.cpp: In function 'void solve()':
sob.cpp:50:12: warning: unused variable 'uy' [-Wunused-variable]
   50 |         ll uy = i & opt;
      |            ^~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 0 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 55 ms 3844 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 332 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 0 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 55 ms 3844 KB Output is correct
5 Incorrect 1 ms 332 KB Output isn't correct
6 Halted 0 ms 0 KB -