-
Notifications
You must be signed in to change notification settings - Fork 4
/
11926 - Multitasking.cpp
60 lines (51 loc) · 1.3 KB
/
11926 - Multitasking.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=3077
//#tag
//#sol
#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <vector>
#include <vector>
#include <queue>
#include <list>
#include <stack>
#include <map>
#include <sstream>
#include <climits>
// #include <unordered_map>
#define ll long long
#define ull unsigned long long
#define pii pair<int,int>
#define pdd pair<double,double>
#define F first
#define S second
#define fr(i,j,k) for(int (i)=(j);(i)<(k);++(i))
#define rep(i,n) for(int (i)=0;(i)<(n);++(i))
#define pb push_back
#define PI acos(-1)
#define db(x) cerr << #x << " = " << x << endl;
#define _ << ", " <<
#define mp make_pair
#define cl(x) memset(x,0,sizeof(x))
// #define umap unordered_map
using namespace std;
template <class _T> inline string tostr(const _T& a){ ostringstream os(""); os<<a;return os.str();}
in[101][3];
int main(){
// freopen("in.txt", "r", stdin);
// freopen("out.txt", "w", stdout);
int n , m;
while(scanf("%d%d",&n,&m) >0 && ( n ||m) ){
fr(i,0,n) {scanf("%d%d", &in[i][0], &in[i][1]); in[i][2] =0;}
fr(i,0,m) scanf("%d%d%d", &in[i][0], &in[i][1], &in[i][2]);
fr(i,0,n+m){
fr(j,i+1,n+m){
}
}
}
return 0;
}