結果

問題 No.3126 Dual Query Problem
ユーザー tokitsukaze
提出日時 2025-04-28 18:53:38
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 636 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 201,344 KB
実行使用メモリ 11,044 KB
最終ジャッジ日時 2025-04-28 18:53:51
合計ジャッジ時間 12,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 21 WA * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%d%d",&n,&q);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:17:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   17 |                 scanf("%d",&x);
      |                 ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF=0x3f3f3f3f;
const ll LLINF=0x3f3f3f3f3f3f3f3fLL;
const int MAX=2e5+10;
struct node{int op,p,x;};
int main()
{
	int n,q,i,x,tot;
	scanf("%d%d",&n,&q);
	vector<node> res;
	map<int,int> mp;
	tot=0;
	for(i=1;i<=n;i++)
	{
		scanf("%d",&x);
		if(mp.count(x)) res.push_back({2,mp[x],0});
		else
		{
			mp[x]=++tot;
			res.push_back({1,mp[x],x});
			res.push_back({2,mp[x],0});
		}
	}
	if(res.size()>q) puts("No");
	else
	{
		puts("Yes");
		for(auto &it:res)
		{
			printf("%d %d",it.op,it.p);
			if(it.op==1) printf(" %d",it.x);
			puts("");
		}
	}
	return 0;
}
0