Skip to content

Instantly share code, notes, and snippets.

View nemupm's full-sized avatar

nemupm nemupm

View GitHub Profile
@nemupm
nemupm / hive-explain
Last active June 4, 2017 14:49
HiveCodeReading
hive> explain select count(*) cnt ,value from itemlist group by value order by cnt desc limit 10;
OK
STAGE DEPENDENCIES:
Stage-1 is a root stage
Stage-2 depends on stages: Stage-1
Stage-0 depends on stages: Stage-2
STAGE PLANS:
Stage: Stage-1
Map Reduce
@nemupm
nemupm / main.cpp
Created April 26, 2022 09:44
Google Code Jam 2022 Round1B - ASeDatAb
#include <bits/stdc++.h>
#include <random>
using namespace std;
#define rep(i,x,y) for(ll i=(x);i<(y);i++)
#define rrep(i,x,y) for(ll i=(ll)(y)-1;i>=(x);i--)
#define all(x) (x).begin(),(x).end()
#define itrout(x) for(int i=0;i<x.size();i++) {cout << x[i] << (i==x.size()-1 ? "\n" : " ");}
#ifdef LOCAL
#define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl