結果

問題 No.945 YKC饅頭
ユーザー yakkiyakki
提出日時 2019-12-08 00:57:07
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,326 bytes
コンパイル時間 791 ms
コンパイル使用メモリ 85,700 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 09:39:20
合計ジャッジ時間 5,936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 3 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 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 69 ms
5,376 KB
testcase_35 WA -
testcase_36 AC 94 ms
5,376 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 13 ms
5,376 KB
testcase_41 AC 5 ms
5,376 KB
testcase_42 WA -
testcase_43 AC 85 ms
5,376 KB
testcase_44 WA -
testcase_45 AC 121 ms
5,376 KB
testcase_46 AC 3 ms
5,376 KB
testcase_47 AC 67 ms
5,376 KB
testcase_48 AC 17 ms
5,376 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 132 ms
5,376 KB
testcase_54 AC 133 ms
5,376 KB
testcase_55 AC 132 ms
5,376 KB
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 1 ms
5,376 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
#include<cstdio>
#include<cstdlib>
using namespace std;

#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
#define MOD 1000000007
//#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592

const double EPS = 1e-10;

using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;


int main(){
    int N,M; cin >> N >> M;
    int y = 0,k = 0,c = 0;
    int a,b; cin >> a >> b;
    a--; b--;
    char d; cin >> d;
    int nowmin = a,nowmax = b;
    if(d == 'Y') y = b-a+1;
    if(d == 'K') k = b-a+1;
    if(d == 'C') c = b-a+1;
    repr(i,1,M){
        int l,r; cin >> l >> r;
        l--; r--;
        char t; cin >> t;
        if(t == 'Y'){
            y += max(nowmin-l,0)+max(r-nowmax,0);
        }
        if(t == 'K'){
            k += max(nowmin-l,0)+max(r-nowmax,0);
        }
        if(t == 'C'){
            c += max(nowmin-l,0)+max(r-nowmax,0);
        }
        nowmin = min(nowmin,l);
        nowmax = max(nowmax,r);
    }
    cout << y << " " << k << " " << c << endl;
}
0