Skip to content

Instantly share code, notes, and snippets.

@IvanIsCoding
IvanIsCoding / teleportation.ipynb
Created December 23, 2019 09:21
Quantum Teleportation using Qiskit
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@IvanIsCoding
IvanIsCoding / Uncomputation.ipynb
Last active December 31, 2019 04:41
Uncomputation using Qiskit
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@IvanIsCoding
IvanIsCoding / a.cpp
Last active October 21, 2023 09:07
Educational Dynamic Programming Contest - AtCoder
// Ivan Carvalho
// Problem A - Educational Dynamic Programming Contest - AtCoder
// Link : https://atcoder.jp/contests/dp
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1e5 + 10;
const int INF = 2*1e9;
int dp[MAXN],N,K,h[MAXN];
@IvanIsCoding
IvanIsCoding / tidalflow.cpp
Last active December 28, 2018 18:59
Tidal Flow Implementation
/*
Tidal Flow Algorithm by M. Fontaine : https://ioinformatics.org/journal/v12_2018_25_41.pdf
Implementation by I. Carvalho
Solution to FASTFLOW : https://www.spoj.com/problems/FASTFLOW/
Note : In this problem, node 1 is the source and node N is the Sink
*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
@IvanIsCoding
IvanIsCoding / Ioi.cpp
Created August 28, 2018 15:21
Japanese Olympiad in Informatics Open Contest 2017
// Ivan Carvalho
// Amusement Park - JOI Open 2017
#include "Ioi.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 10011;
const int MAXL = 60;
static vector<int> grafo[MAXN],tree[MAXN],lista;
@IvanIsCoding
IvanIsCoding / device.cpp
Created August 28, 2018 02:31
Japanese Olympiad in Informatics Spring Camp 2017
// Ivan Carvalho
// City - JOI SC 2017
#include "Device.h"
#include <bits/stdc++.h>
using namespace std;
static vector<int> sequencia;
static void build_sequence(){
@IvanIsCoding
IvanIsCoding / Alice.cpp
Created August 26, 2018 14:16
Japanese Olympiad in Informatics Spring Camp 2018
// Ivan Carvalho
// Airline Route Map - JOI SC 2018
#include "Alicelib.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1020;
static vector<int> grafo[MAXN];
@IvanIsCoding
IvanIsCoding / Anna.cpp
Created August 25, 2018 13:37
Japanese Olympiad in Informatics Spring Camp 2017
// Ivan Carvalho
// Broken Device - JOI SC 2017
#include "Annalib.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 150;
static int possivel[MAXN],resposta[MAXN];
@IvanIsCoding
IvanIsCoding / Anna.cpp
Created August 25, 2018 00:40
Japanese Olympiad in Informatics Spring Camp 2015
// Ivan Carvalho
// Navigation - JOI SC 2015
#include "Annalib.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1e5 + 10;
static vector<int> grafo[MAXN];
static int cor[MAXN];
@IvanIsCoding
IvanIsCoding / coins.cpp
Created August 24, 2018 21:23
Practice Session of IOI 2017
// Ivan Carvalho
// Coins - IOI 2017 Practice
// 1 coin flip
#include "coins.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> coin_flips(vector<int> b, int c) {
int meu_inteiro = 0;
for(int i = 0;i<64;i++) if(b[i]) meu_inteiro ^= i;