poj 3282 Ferry Loading IV

poj 3282 Ferry Loading IV,第1张

poj 3282 Ferry Loading IV
#include<cstdio>#include<cstring>#include<queue>using namespace std;int main(){    int cas, lcnt, rcnt, on,n,m,l;    char s[10];    scanf ("%d", &cas);    while (cas--)    {        queue<int> le, ri;        scanf ("%d%d", &n, &m);        n *= 100;        while (m--)        { scanf ("%d%s", &l, s); if (s[0] == 'l') le.push (l); else ri.push (l);        }        lcnt = on = 0;        while (!le.empty())        { while (!le.empty() && on + le.front() < n)     on += le.front(), le.pop(); ++lcnt, on = 0;        }        rcnt = on = 0;        while (!ri.empty())        { while (!ri.empty() && on + ri.front() < n)     on += ri.front(), ri.pop(); ++rcnt, on = 0;        }        if (lcnt > rcnt) printf ("%dn", 2 * lcnt - 1);        else printf ("%dn",2 * rcnt);    }    return 0;}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4891462.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存