結果

問題 No.2762 Counting and Deleting
ユーザー 👑 binapbinap
提出日時 2024-05-08 01:07:50
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 728 bytes
コンパイル時間 4,506 ms
コンパイル使用メモリ 267,884 KB
実行使用メモリ 806,344 KB
最終ジャッジ日時 2024-12-15 06:32:50
合計ジャッジ時間 56,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,644 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 2 ms
13,636 KB
testcase_04 AC 2 ms
374,816 KB
testcase_05 AC 2 ms
13,636 KB
testcase_06 AC 2 ms
11,040 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;

using mint = atcoder::modint998244353;

int main(){
	int n, q;
	cin >> n >> q;
	string s;
	cin >> s;
	rep(i, q){
		int t, l, r;
		cin >> t >> l >> r;
		l--; r--;
		if(t == 1){
			for(int i = l; i <= r; i++) s[i] = '_';
		}
		if(t == 2){
			int d = r - l + 1;
			int ans = 0;
			set<string> se;
			rep(bit, 1 << d){
				string t;
				rep(i, d){
					if((bit >> i) & 1) t += s[l + i];
				}
				int m = t.size();
				if(m == 0) continue;
				if(t[0] == '0') continue;
				bool success = true;
				rep(i, m) if(t[i] == '_') success = false;
				if(success) se.insert(t);
			}
			cout << se.size() << "\n";
		}
	}
	return 0;
}
0