Skip to content

Commit 570591f

Browse files
committed
Gwalior onsite
1 parent a3a254c commit 570591f

File tree

7 files changed

+210
-0
lines changed

7 files changed

+210
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
for __ in range(int(input())):
2+
n = int(raw_input())
3+
# map(int, raw_input().split())
4+
a = [0,0,0]
5+
b = [100,100,100]
6+
for i in range(n):
7+
[c,l,x] = map(int, raw_input().split())
8+
if x>a[l-1]:
9+
a[l-1]=x
10+
b[l-1]=c
11+
elif x==a[l-1]:
12+
if b[l-1]>c:
13+
b[l-1]=c
14+
for i in xrange(3):
15+
print str(a[i])+' '+str(b[i])
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
for kohli in range(input()):
2+
n = int(input())
3+
x=[]
4+
y=[]
5+
xx=[]
6+
yy=[]
7+
ans=[]
8+
for i in range(n):
9+
a,b = map(int,raw_input().split(' '))
10+
x.append(a)
11+
y.append(b)
12+
# print(x,y)
13+
for i in range(n):
14+
yy.append([y[i],i])
15+
# print(yy)
16+
yy.sort(key = lambda x:x[0])
17+
# print(yy)
18+
yy = yy[::-1]
19+
# print(yy)
20+
for i in yy:
21+
if(len(ans)==3):
22+
break
23+
if(x[i[1]] in xx):
24+
continue
25+
else:
26+
xx.append(x[i[1]])
27+
ans.append(i[0])
28+
if(len(ans)==3):
29+
print(sum(ans))
30+
else:
31+
print('0')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# cook your code here
2+
t=int(raw_input())
3+
for a0 in xrange(t):
4+
a,k=map(float,raw_input().split())
5+
b=map(float,raw_input().split())
6+
# print a,k,b
7+
m=min(b)
8+
if m<0:
9+
for i in xrange(3):
10+
b[i]+=abs(m)
11+
[x1,x2,x3]=sorted(b)
12+
if (k >= (x3-x1)/2):
13+
print float(a*a)
14+
else:
15+
if x3-x1-2*k>a: print float(0)
16+
else: print abs(x3-x1-2*k-a)*a
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
#include <bits/stdc++.h>
2+
#define F first
3+
#define S second
4+
using namespace std;
5+
6+
typedef long long ll;
7+
typedef pair<int, int> pii;
8+
9+
ll y[4][2010], sz[4];
10+
11+
ll case1(int l, int r) {
12+
ll ans = 0;
13+
int i, j;
14+
for(i = 1; i <= sz[l]; ++i) {
15+
ll cur = 0, cnt = 0;
16+
for(j = 1; j <= sz[r]; ++j) {
17+
ll z = abs(r - l)*abs(y[r][j] - y[l][i]) + 2*abs(r - l)*min(y[r][j], y[l][i]);
18+
ans += cnt*z - cur;
19+
cur += z;
20+
cnt += 1;
21+
}
22+
}
23+
return ans;
24+
}
25+
26+
int main() {
27+
int t, i, j;
28+
// freopen("in.txt", "r", stdin);
29+
scanf("%d", &t);
30+
while(t--) {
31+
int n, u, v;
32+
scanf("%d", &n);
33+
sz[1] = sz[2] = sz[3] = 0;
34+
for(i = 1; i <= n; ++i) {
35+
scanf("%d %d", &u, &v);
36+
sz[u]++;
37+
y[u][sz[u]] = v;
38+
}
39+
for(i = 1; i <= 3; ++i) {
40+
sort(y[i] + 1, y[i] + sz[i] + 1);
41+
}
42+
ll ans = 0;
43+
//Case 1 and 2
44+
ans += case1(1, 2);
45+
//Case 2 and 1
46+
ans += case1(2, 1);
47+
// Case 2 and 3
48+
ans += case1(2, 3);
49+
// Case 3 and 2
50+
ans += case1(3, 2);
51+
// Case 1 and 3
52+
ans += case1(1, 3);
53+
// Case 3 and 1
54+
ans += case1(3, 1);
55+
// cout << ans << endl;
56+
// Case 1, 2 and 3
57+
for(i = 1; i <= sz[1]; ++i) {
58+
ll cur = 0, cnt = 0, ptr = 1;
59+
for(j = 1; j <= sz[2]; ++j) {
60+
ll z = abs(y[2][j] - y[1][i]) + 2*min(y[2][j], y[1][i]);
61+
while(ptr <= sz[3] and y[3][ptr] < y[2][j] + y[2][j] - y[1][i]) ptr++;
62+
ans += (ptr - 1)*z - (sz[3] - ptr + 1)*z;
63+
// cout << "in " << ptr << endl;
64+
}
65+
}
66+
// cout << ans << endl;
67+
for(i = 1; i <= sz[3]; ++i) {
68+
ll cur = 0, cnt = 0, ptr = 1;
69+
for(j = 1; j <= sz[2]; ++j) {
70+
ll z = abs(y[2][j] - y[3][i]) + 2*min(y[2][j], y[3][i]);
71+
while(ptr <= sz[1] and y[1][ptr] < y[2][j] + y[2][j] - y[3][i]) ptr++;
72+
ans += (ptr - 1)*z - (sz[1] - ptr + 1)*z;
73+
}
74+
}
75+
// cout << ans << endl;
76+
for(i = 1; i <= sz[1]; ++i) {
77+
ll cur = 0, cnt = 0, ptr = 1;
78+
for(j = 1; j <= sz[3]; ++j) {
79+
ll z = 2*abs(y[3][j] - y[1][i]) + 2*2*min(y[3][j], y[1][i]);
80+
while(ptr <= sz[2] and y[2][ptr] + y[2][ptr] <= y[1][i] + y[3][j]) ptr++;
81+
ans += (ptr - 1)*z - (sz[2] - ptr + 1)*z;
82+
}
83+
}
84+
// cout << ans << endl;
85+
long double fin = (long double)ans/2.0;
86+
printf("%.3Lf\n", fin);
87+
}
88+
return 0;
89+
}

CP/January Lunchtime 2018/prob1.py

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
for kohli in range(input()):
2+
n = int(input())
3+
a = list(map(int, raw_input().split()))
4+
c1=0
5+
c2=0
6+
sum=0
7+
for x in range(10):
8+
i=0
9+
j=0
10+
for i in range(len(a)):
11+
for j in range(len(a)):
12+
if(j>len(a)):
13+
break
14+
if(len(a)==1):
15+
break
16+
if(len(a)==2):
17+
sum = a[0]+a[1]
18+
if(not(sum)&1):
19+
# print(sum)
20+
# print(a)
21+
a.pop(0)
22+
a.pop(0)
23+
a.append(sum)
24+
# print(a)
25+
else:
26+
if(i!=j and i<len(a) and j<len(a)):
27+
sum = a[i]+a[j]
28+
# print(sum)
29+
if(not(sum)&1 and i!=j and i<len(a) and j<len(a)):
30+
# print(sum)
31+
# print(i,j)
32+
# print(a)
33+
if(i<j):
34+
a.pop(i)
35+
# print(a)
36+
a.pop((j-1) if (j-1)>=0 else j+len(a)-2)
37+
# print(a)
38+
else:
39+
a.pop(j)
40+
# print(a)
41+
a.pop((i-1) if (i-1)>=0 else i+len(a)-2)
42+
# print(a)
43+
a.append(sum)
44+
# print(a)
45+
if(len(a)==1):
46+
break
47+
if(i>len(a)):
48+
break
49+
if(len(a)==1):
50+
break
51+
print(len(a))
52+
a[:] = []
53+
54+
'''
55+
1
56+
5
57+
2 1 3 1 3
58+
'''

CP/January Lunchtime 2018/prob2.py

Whitespace-only changes.

CP/JanuaryCookOff2018/prob5.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Could not solve this motherf***er

0 commit comments

Comments
 (0)