1 #include<iostream>
2 #include<cstdio>
3 #include<cstring>
4 #include<cmath>
5 #include<queue>
6 using namespace std;
7 const int MAXN=6001;
8 void read(int &n)
9 {
10 char c='+';int x=0;bool flag=0;
11 while(c<'0'||c>'9')
12 {c=getchar();if(c=='-')flag=1;}
13 while(c>='0'&&c<='9')
14 {x=x*10+(c-48);c=getchar();}
15 flag==1?n=-x:n=x;
16 }
17 int maxt;
18 int ans=0;
19 int now=0;
20 int dp[1001][1001];
21 void dfs(int p)
22 {
23 int spend,how;
24 read(spend);read(how);
25 spend*=2;
26 if(how==0)// 分叉
27 {
28 int lc=++now;int rc=++now;
29 dfs(lc);dfs(rc);
30 for(int i=spend;i<=maxt;i++)// 左孩子的时间
31 for(int j=0;j<=i-spend;j++)// 右孩子的剩余的时间
32 dp[p][i]=max(dp[p][i],dp[lc][j]+dp[rc][i-spend-j]);
33 }
34 else
35 for(int i=spend;i<=maxt;i++)
36 dp[p][i]=min((i-spend)/5,how);
37 }
38 int main()
39 {
40 read(maxt);
41 dfs(0);
42 printf("%d",dp[0][maxt]);
43 return 0;
44 }