結果

問題 No.2762 Counting and Deleting
ユーザー 👑 binapbinap
提出日時 2024-05-08 01:07:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 728 bytes
コンパイル時間 4,997 ms
コンパイル使用メモリ 267,172 KB
実行使用メモリ 818,176 KB
最終ジャッジ日時 2024-05-08 22:34:42
合計ジャッジ時間 10,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 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 MLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

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