551. Student Attendance Record I

Problem:

You are given a string representing an attendance record for a student. The record only contains the following three characters:

  1. 'A' : Absent.
  2. 'L' : Late.
  3. 'P' : Present.
    A student could be rewarded if his attendance record doesn't contain more than one 'A' (absent) or more than two continuous 'L' (late).

You need to return whether the student could be rewarded according to his attendance record.

Example 1:

Input: "PPALLP"
Output: True

Example 2:

Input: "PPALLL"
Output: False

思路

Solution (C++):

bool checkRecord(string s) {
    int count_A = 0;
    
    for (int i = 0; i < s.length(); ++i) {
        int count_L = 0;
        while (s[i] == 'L') { ++count_L; ++i; }
        if (s[i] == 'A')  ++count_A;
        if (count_A > 1 || count_L > 2)  return false;  
    }
    return true;
}

性能

Runtime: 4 ms  Memory Usage: 6.4 MB

思路

Solution (C++):


性能

Runtime: ms  Memory Usage: MB

posted @ 2020-04-17 00:41  littledy  阅读(134)  评论(0编辑  收藏  举报