csuoj 1339 最后一滴血

水题。

标记一下某个队做没做出过某道题,然后从前往后扫。


代码:

#include 
#include 
#include 
using namespace std;

int res[15];
int rest[15];
bool solve[105][15];
struct node{
    int t,d;
    int p;
    bool ok;
}G[1005];

int main(){
    int n,t,m;
    scanf("%d%d%d",&n,&t,&m);
    memset(rest,-1,sizeof(rest));
    for(int i=1;i<=m;i++){
        char tmp1[5];
        char tmp2[5];
        scanf("%d%d%s%s",&G[i].t,&G[i].d,tmp1,tmp2);
        G[i].p=(int)(tmp1[0]-'A');
        if(tmp2[0]=='Y'){
            G[i].ok=1;
        }
        else G[i].ok=0;
    }
    for(int i=1;i<=m;i++){
        if(G[i].ok){
            if(!solve[G[i].d][G[i].p]){
                res[G[i].p]=G[i].d;
                rest[G[i].p]=G[i].t;
                solve[G[i].d][G[i].p]=1;
            }
        }
    }
    for(int i=0;i


你可能感兴趣的:(水题)