# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1157767 | aritro_ | Nile (IOI24_nile) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define int ll
vector<int> calculate_costs(
vector<int>W,vector<int>A,
vector<int>B,vector<int>E){
vector<int> costs(E.size(),2);
return costs;
}
int32_t main(){
int n;
cin>>n;
vector<int> w(n),a(n),b(n);
for(int i=0;i<n;i++) cin>>w[i]>>a[i]>>b[i];
int q;
cin>>q;
vector<int> d(q);
for(int i=0;i<q;i++) cin>>d[i];
calculate_costs(w,a,b,d);
}