結果
| 問題 |
No.3126 Dual Query Problem
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-28 18:55:26 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 118 ms / 2,000 ms |
| コード長 | 682 bytes |
| コンパイル時間 | 1,752 ms |
| コンパイル使用メモリ | 202,480 KB |
| 実行使用メモリ | 10,324 KB |
| 最終ジャッジ日時 | 2025-06-20 02:54:31 |
| 合計ジャッジ時間 | 10,919 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 33 |
コンパイルメッセージ
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);
| ~~~~~^~~~~~~~~
ソースコード
#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
{
while(res.size()<q) res.push_back({1,1,1});
puts("Yes");
for(auto &it:res)
{
printf("%d %d",it.op,it.p);
if(it.op==1) printf(" %d",it.x);
puts("");
}
}
return 0;
}