#include <iostream>
using namespace std;
#define MAXN 100010
int sc[MAXN];
int main()
{
int groups, ans;
int N1, N2, N3, N4;
while(cin >> groups)
{
ans = N1 = N2 = N3 = N4 = 0;
for(int i = 0; i < groups; i++)
{
cin >> sc[i];
switch(sc[i])
{
case 1: N1++; break;
case 2: N2++; break;
case 3: N3++; break;
default: N4++;
}
}
ans += N4 + N3;
if((N3 != 0) && (N1 != 0))
{
if(N3 > N1)
N1 = 0;
else if(N1 == N3)
N1 = N3 = 0;
else
N1 -= N3;
}
if(N2)
{
ans += N2 / 2;
N2 %= 2;
}
if(N1)
{
ans += N1 / 4;
N1 %= 4;
}
if((N2 != 0) && (N1 != 0))
{
if(N1 > 2)
ans += 2;
else
ans++;
}
else if(N2 || N1)
ans++;
cout << ans << endl;
}
return 0;
}
这道题,刚开始写的时候竟然忘记给N1、N2、N3、N4这四个变量赋值了。。。
本以为这道题的用时会比平时要少些,结果是,用时:258ms 内存:400K。默默无语两眼泪。。。