結果

問題 No.945 YKC饅頭
ユーザー tarattata1tarattata1
提出日時 2019-12-08 00:12:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 1,370 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 79,696 KB
実行使用メモリ 13,164 KB
最終ジャッジ日時 2024-06-08 02:50:49
合計ジャッジ時間 6,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 14 ms
5,376 KB
testcase_32 AC 47 ms
9,088 KB
testcase_33 AC 59 ms
9,728 KB
testcase_34 AC 56 ms
7,808 KB
testcase_35 AC 102 ms
11,904 KB
testcase_36 AC 37 ms
5,376 KB
testcase_37 AC 34 ms
5,376 KB
testcase_38 AC 37 ms
5,376 KB
testcase_39 AC 36 ms
7,512 KB
testcase_40 AC 59 ms
10,368 KB
testcase_41 AC 36 ms
8,064 KB
testcase_42 AC 64 ms
7,552 KB
testcase_43 AC 29 ms
5,376 KB
testcase_44 AC 82 ms
10,148 KB
testcase_45 AC 59 ms
6,528 KB
testcase_46 AC 24 ms
6,576 KB
testcase_47 AC 58 ms
8,200 KB
testcase_48 AC 10 ms
5,376 KB
testcase_49 AC 44 ms
8,008 KB
testcase_50 AC 67 ms
7,168 KB
testcase_51 AC 120 ms
12,648 KB
testcase_52 AC 121 ms
12,672 KB
testcase_53 AC 117 ms
12,640 KB
testcase_54 AC 118 ms
12,700 KB
testcase_55 AC 118 ms
12,644 KB
testcase_56 AC 75 ms
13,164 KB
testcase_57 AC 58 ms
12,640 KB
testcase_58 AC 185 ms
12,416 KB
testcase_59 AC 203 ms
12,416 KB
testcase_60 AC 138 ms
12,416 KB
testcase_61 AC 192 ms
12,288 KB
testcase_62 AC 188 ms
12,416 KB
testcase_63 AC 55 ms
12,416 KB
testcase_64 AC 147 ms
12,416 KB
testcase_65 AC 135 ms
12,288 KB
testcase_66 AC 135 ms
12,416 KB
testcase_67 AC 171 ms
12,416 KB
testcase_68 AC 132 ms
12,416 KB
testcase_69 AC 87 ms
12,416 KB
testcase_70 AC 98 ms
12,288 KB
testcase_71 AC 98 ms
12,416 KB
testcase_72 AC 153 ms
12,416 KB
testcase_73 AC 199 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’:
main.cpp:31:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   31 |     scanf("%d%d", &n, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~
main.cpp:42:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   42 |         scanf("%d%d%s", &l, &r, str); l--;
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <assert.h>
#pragma warning(disable:4996) 
 
typedef long long ll;
#define MIN(a, b) ((a)>(b)? (b): (a))
#define MAX(a, b) ((a)<(b)? (b): (a))
#define LINF 9223300000000000000
#define INF 2140000000
const long long MOD = 1000000007;
//const long long MOD = 998244353;
using namespace std;



int main(int argc, char* argv[])
{
    int n,m;
    scanf("%d%d", &n, &m);

    char str[4]={0};
    set<int> z;
    int cnt[3]={0};
    int i;
    for(i=0; i<n; i++) {
        z.insert(i);
    }
    for(i=0; i<m; i++) {
        int l,r;
        scanf("%d%d%s", &l, &r, str); l--;
        auto it0=z.lower_bound(l);
        auto it1=z.lower_bound(r);
        int now=2;
        if(str[0]=='Y') {
            now=0;
        }
        else if(str[0]=='K') {
            now=1;
        }
        vector<int> del;
        for(; it0!=it1; ++it0) {
            int tmp=(*it0);
            cnt[now]++;
            del.push_back(tmp);
        }
        int p;
        for(p=0; p<(int)del.size(); p++) {
            z.erase(del[p]);
        }
    }
    for(i=0; i<3; i++) {
        printf("%d ", cnt[i]);
    }
    printf("\n");

    return 0;
}
0